morss/Dockerfile
pictuga 580565da77
Some checks reported errors
continuous-integration/drone/push Build was killed
Dockerfile: reduce # of steps & image size
2021-12-11 18:28:35 +01:00

16 lines
325 B
Docker

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