forked from bziemons/webhook-matrix-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
27 lines (21 loc) · 819 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM alpine
RUN apk add --no-cache uwsgi-python3 python3
# partly from https://hub.docker.com/_/python?tab=description#create-a-dockerfile-in-your-python-app-project
WORKDIR /usr/src/wmn
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
# copy required source files
COPY wmn.py ./
WORKDIR /run/wmn
# requires config.yml to be present at build
COPY config.yml ./
RUN chown -R 999 /run/wmn && chmod 0600 /run/wmn/config.yml
USER 999
# opens a uwsgi socket at port 3031, which is to be used by a reverse proxy
CMD [ "uwsgi", "--die-on-term", \
"--need-plugin", "python3", \
"--socket", "0.0.0.0:3031", \
"--wsgi-file", "/usr/src/wmn/wmn.py", \
"--master", \
"--processes", "1", \
"--threads", "2" ]