morss/Dockerfile
pictuga b2600152ea
All checks were successful
continuous-integration/drone/push Build is passing
docker: remove unneeded git dep
2021-12-10 15:14:50 +00:00

12 lines
209 B
Docker

FROM alpine:latest
RUN apk add --no-cache python3 py3-pip py3-wheel py3-lxml
ADD . /app
RUN pip3 install --no-cache-dir /app[full]
USER 1000:1000
ENTRYPOINT ["/bin/sh", "/app/docker-entry.sh"]
CMD ["run"]