morss/Dockerfile
pictuga 2a7a1b83ec
All checks were successful
continuous-integration/drone/push Build is passing
Use alpine:edge to have up-to-date py packages
2021-12-28 13:41:42 +01:00

17 lines
364 B
Docker

FROM alpine:edge
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"]
HEALTHCHECK CMD ["check"]