Adjust Dockerfile so the repo doesn't have to be cloned

pull/3268/head
Charley Bailey 2024-11-02 16:39:20 -04:00
parent 9561846979
commit ecd529c55f
1 changed files with 73 additions and 11 deletions

View File

@ -1,23 +1,21 @@
# Minify client side assets (JavaScript) FROM node:18 AS build-js
FROM node:latest AS build-js
RUN npm install gulp gulp-cli -g RUN npm install -g gulp gulp-cli --loglevel verbose # Add verbose logging
WORKDIR /build WORKDIR /build
COPY . . COPY . .
RUN npm install --only=dev RUN npm install --only=dev
RUN gulp
FROM golang:latest AS build-golang
# Build Golang binary
FROM golang:1.15.2 AS build-golang
WORKDIR /go/src/github.com/gophish/gophish WORKDIR /go/src/github.com/gophish/gophish
COPY . . COPY . .
RUN go get -v && go build -v RUN go get -v && go build -v
# Runtime container
FROM debian:stable-slim FROM debian:stable-slim
RUN useradd -m -d /opt/gophish -s /bin/bash app RUN useradd -m -d /opt/gophish -s /bin/bash app
@ -28,18 +26,82 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /opt/gophish WORKDIR /opt/gophish
COPY --from=build-golang /go/src/github.com/gophish/gophish/ ./ COPY --from=build-golang /go/src/github.com/gophish/gophish/ ./
COPY --from=build-js /build/static/js/dist/ ./static/js/dist/ COPY --from=build-js /build/static/js/dist/ ./static/js/dist/
COPY --from=build-js /build/static/css/dist/ ./static/css/dist/ COPY --from=build-js /build/static/css/dist/ ./static/css/dist/
COPY --from=build-golang /go/src/github.com/gophish/gophish/config.json ./ COPY --from=build-golang /go/src/github.com/gophish/gophish/config.json ./
RUN chown app. config.json RUN chown app. config.json
RUN setcap 'cap_net_bind_service=+ep' /opt/gophish/gophish RUN setcap 'cap_net_bind_service=+ep' /opt/gophish/gophish
USER app USER app
ENV ADMIN_LISTEN_URL=""
ENV ADMIN_USE_TLS=""
ENV ADMIN_CERT_PATH=""
ENV ADMIN_KEY_PATH=""
ENV ADMIN_TRUSTED_ORIGINS=""
ENV PHISH_LISTEN_URL=""
ENV PHISH_USE_TLS=""
ENV PHISH_CERT_PATH=""
ENV PHISH_KEY_PATH=""
ENV CONTACT_ADDRESS=""
ENV DB_NAME=""
ENV DB_FILE_PATH=""
RUN if [ -n "${ADMIN_LISTEN_URL}" ] ; then \
jq -r --arg ADMIN_LISTEN_URL "${ADMIN_LISTEN_URL}" '.admin_server.listen_url = $ADMIN_LISTEN_URL' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${ADMIN_USE_TLS}" ] ; then \
jq -r --argjson ADMIN_USE_TLS "${ADMIN_USE_TLS}" '.admin_server.use_tls = $ADMIN_USE_TLS' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${ADMIN_CERT_PATH}" ] ; then \
jq -r --arg ADMIN_CERT_PATH "${ADMIN_CERT_PATH}" '.admin_server.cert_path = $ADMIN_CERT_PATH' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${ADMIN_KEY_PATH}" ] ; then \
jq -r --arg ADMIN_KEY_PATH "${ADMIN_KEY_PATH}" '.admin_server.key_path = $ADMIN_KEY_PATH' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${ADMIN_TRUSTED_ORIGINS}" ] ; then \
jq -r --arg ADMIN_TRUSTED_ORIGINS "${ADMIN_TRUSTED_ORIGINS}" '.admin_server.trusted_origins = ($ADMIN_TRUSTED_ORIGINS|split(","))' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${PHISH_LISTEN_URL}" ] ; then \
jq -r --arg PHISH_LISTEN_URL "${PHISH_LISTEN_URL}" '.phish_server.listen_url = $PHISH_LISTEN_URL' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${PHISH_USE_TLS}" ] ; then \
jq -r --argjson PHISH_USE_TLS "${PHISH_USE_TLS}" '.phish_server.use_tls = $PHISH_USE_TLS' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${PHISH_CERT_PATH}" ] ; then \
jq -r --arg PHISH_CERT_PATH "${PHISH_CERT_PATH}" '.phish_server.cert_path = $PHISH_CERT_PATH' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${PHISH_KEY_PATH}" ] ; then \
jq -r --arg PHISH_KEY_PATH "${PHISH_KEY_PATH}" '.phish_server.key_path = $PHISH_KEY_PATH' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${CONTACT_ADDRESS}" ] ; then \
jq -r --arg CONTACT_ADDRESS "${CONTACT_ADDRESS}" '.contact_address = $CONTACT_ADDRESS' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${DB_NAME}" ] ; then \
jq -r --arg DB_NAME "${DB_NAME}" '.db_name = $DB_NAME' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi && \
if [ -n "${DB_FILE_PATH}" ] ; then \
jq -r --arg DB_FILE_PATH "${DB_FILE_PATH}" '.db_path = $DB_FILE_PATH' config.json > config.json.tmp && \
mv config.json.tmp config.json; \
fi
RUN sed -i 's/127.0.0.1/0.0.0.0/g' config.json RUN sed -i 's/127.0.0.1/0.0.0.0/g' config.json
RUN touch config.json.tmp
EXPOSE 3333 8080 8443 80 EXPOSE 3333 8080 8443 80
CMD ["./docker/run.sh"] CMD ["./gophish"]