morss/Dockerfile
pictuga 46a0f150a6
Some checks failed
continuous-integration/drone/push Build is failing
test
2021-12-07 22:25:55 +01:00

15 lines
327 B
Docker

FROM alpine:latest
RUN apk add --no-cache python3 py3-pip py3-wheel git py3-lxml
# to solve issue with pip
RUN apk add --update util-linux && whereis lsb_release #rm rm -rf /usr/bin/lsb_release
ADD . /app
RUN pip3 install --no-cache-dir /app[full]
USER 1000:1000
ENTRYPOINT ["/bin/sh", "/app/docker-entry.sh"]
CMD ["run"]