tpotce/docker/wordpot/Dockerfile

41 lines
1.2 KiB
Text
Raw Normal View History

2022-02-09 19:13:18 +00:00
FROM alpine:3.15
#
# Include dist
2022-03-08 23:36:03 +00:00
#COPY dist/ /root/dist/
2022-02-09 19:13:18 +00:00
# Install packages
2022-03-08 23:36:03 +00:00
RUN apk -U --no-cache add \
2022-02-09 19:13:18 +00:00
build-base \
git \
libcap \
py3-pip \
python3 \
python3-dev && \
#
# Install wordpot from GitHub and setup
mkdir -p /opt && \
cd /opt/ && \
git clone https://github.com/Will-777/wordpot2 && \
cd wordpot2 && \
git checkout e93a2e00d84d280b0acd58ba6889b4bee8a6e4d2 && \
sed "s/MarkupSafe==1.0/MarkupSafe==1.1.1/g" -i requirements.txt && \
2022-03-08 23:36:03 +00:00
# cp /root/dist/views.py /opt/wordpot2/wordpot/views.py && \
2022-02-09 19:13:18 +00:00
pip3 install -r requirements.txt && \
setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \
#
# Setup user, groups and configs
addgroup -g 2000 wordpot && \
adduser -S -H -s /bin/ash -u 2000 -D -g 2000 wordpot && \
chown wordpot:wordpot -R /opt/wordpot2 && \
#
# Clean up
apk del --purge build-base \
git \
python3-dev && \
2022-03-08 23:36:03 +00:00
rm -rf /root/* /var/cache/apk/* /opt/wordpot2/.git
2022-02-09 19:13:18 +00:00
#
# Start wordpot
STOPSIGNAL SIGINT
USER wordpot:wordpot
WORKDIR /opt/wordpot2
CMD ["/usr/bin/python3","wordpot2.py", "--host", "0.0.0.0", "--port", "80", "--title", "Wordpress"]