9 lines
174 B
Docker
9 lines
174 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache python3 py3-lxml py3-gunicorn py3-pip git
|
|
|
|
ADD . /app
|
|
RUN pip3 install /app
|
|
|
|
CMD gunicorn --bind 0.0.0.0:8080 -w 4 --preload morss
|