morss/Dockerfile
pictuga 7dac7506ed
Some checks failed
continuous-integration/drone/push Build is failing
test
2021-12-08 00:04:01 +01:00

17 lines
323 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 -vv add util-linux
RUN 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"]