55 lines
2.6 KiB
Docker
55 lines
2.6 KiB
Docker
FROM python:3-alpine
|
|
|
|
# Install dependencies
|
|
COPY deps/requirements.txt /opt/bunkerweb/deps/requirements.txt
|
|
RUN apk add --no-cache --virtual build gcc python3-dev musl-dev libffi-dev openssl-dev cargo && \
|
|
mkdir /opt/bunkerweb/deps/python && \
|
|
pip install --no-cache-dir --require-hashes --target /opt/bunkerweb/deps/python -r /opt/bunkerweb/deps/requirements.txt && \
|
|
apk del build
|
|
|
|
# Copy files
|
|
# can't exclude specific files/dir from . so we are copying everything by hand
|
|
COPY api /opt/bunkerweb/api
|
|
COPY cli /opt/bunkerweb/cli
|
|
COPY confs /opt/bunkerweb/confs
|
|
COPY core /opt/bunkerweb/core
|
|
COPY gen /opt/bunkerweb/gen
|
|
COPY helpers /opt/bunkerweb/helpers
|
|
COPY job /opt/bunkerweb/job
|
|
COPY utils /opt/bunkerweb/utils
|
|
COPY settings.json /opt/bunkerweb/settings.json
|
|
COPY VERSION /opt/bunkerweb/VERSION
|
|
COPY autoconf /opt/bunkerweb/autoconf
|
|
|
|
# Add nginx user, drop bwcli, setup data folders, permissions and logging
|
|
RUN apk add --no-cache git && \
|
|
ln -s /usr/local/bin/python3 /usr/bin/python3 && \
|
|
addgroup -g 101 nginx && \
|
|
adduser -h /var/cache/nginx -g nginx -s /bin/sh -G nginx -D -H -u 101 nginx && \
|
|
apk add --no-cache bash && \
|
|
cp /opt/bunkerweb/helpers/bwcli /usr/local/bin && \
|
|
mkdir /opt/bunkerweb/configs && \
|
|
for dir in $(echo "cache configs configs/http configs/stream configs/server-http configs/server-stream configs/default-server-http configs/default-server-stream configs/modsec configs/modsec-crs letsencrypt plugins www") ; do ln -s "/data/${dir}" "/opt/bunkerweb/${dir}" ; done && \
|
|
mkdir /opt/bunkerweb/tmp && \
|
|
chown -R root:nginx /opt/bunkerweb && \
|
|
find /opt/bunkerweb -type f -exec chmod 0740 {} \; && \
|
|
find /opt/bunkerweb -type d -exec chmod 0750 {} \; && \
|
|
chmod 770 /opt/bunkerweb/tmp && \
|
|
chmod 750 /opt/bunkerweb/gen/main.py /opt/bunkerweb/job/main.py /opt/bunkerweb/cli/main.py /usr/local/bin/bwcli /opt/bunkerweb/helpers/*.sh /opt/bunkerweb/autoconf/main.py /opt/bunkerweb/deps/python/bin/* && \
|
|
find /opt/bunkerweb/core/*/jobs/* -type f -exec chmod 750 {} \; && \
|
|
chown root:nginx /usr/local/bin/bwcli && \
|
|
mkdir /etc/nginx && \
|
|
chown -R nginx:nginx /etc/nginx && \
|
|
chmod -R 770 /etc/nginx && \
|
|
ln -s /data/letsencrypt /etc/letsencrypt && \
|
|
mkdir /var/log/letsencrypt /var/lib/letsencrypt && \
|
|
chown root:nginx /var/log/letsencrypt /var/lib/letsencrypt && \
|
|
chmod 770 /var/log/letsencrypt /var/lib/letsencrypt && \
|
|
ln -s /proc/1/fd/1 /var/log/letsencrypt/letsencrypt.log
|
|
|
|
VOLUME /data /etc/nginx
|
|
|
|
WORKDIR /opt/bunkerweb/autoconf
|
|
|
|
CMD ["python", "/opt/bunkerweb/autoconf/main.py"]
|