morss/Dockerfile
pictuga 65f919a58f
Some checks failed
continuous-integration/drone/push Build is failing
Clean up install/exec
2021-12-25 11:23:37 +01:00

15 lines
339 B
Docker

FROM alpine:latest
ADD . /app
RUN set -ex; \
apk add --no-cache --virtual .run-deps python3 py3-lxml py3-setproctitle py3-setuptools; \
apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \
pip3 install --no-cache-dir /app[full]; \
apk del .build-deps
USER 1000:1000
ENTRYPOINT ["/bin/sh", "/app/morss-helper"]
CMD ["run"]