morss/Dockerfile
pictuga 4dd77b4bcc
All checks were successful
continuous-integration/drone/push Build is passing
Add gevent to for deployment to get the latest one
2021-11-23 20:07:56 +01:00

12 lines
229 B
Docker

FROM alpine:latest
RUN apk add --no-cache python3 py3-lxml py3-pip py3-wheel git
ADD . /app
RUN pip3 install --no-cache-dir /app[full] gunicorn gevent
USER 1000:1000
ENTRYPOINT ["/bin/sh", "/app/docker-entry.sh"]
CMD ["run"]