morss/Dockerfile
pictuga 37e08f8b4c
Some checks failed
continuous-integration/drone/push Build is failing
Include gunicorn and gevent in [full]
2021-11-23 20:32:22 +01:00

12 lines
258 B
Docker

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