morss/Dockerfile
pictuga 106f59afa1
Some checks failed
continuous-integration/drone/push Build is failing
docker: shift HEALTHCHECK to helper
2021-12-27 16:08:55 +01:00

17 lines
366 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"]
HEALTHCHECK CMD ["check"]