dawdle/Dockerfile
pwgen2155 9515c878a3
All checks were successful
continuous-integration/drone/push Build is passing
fix: pin python version so we don't rebuild everytime they push a new version
2024-04-12 06:05:38 +00:00

7 lines
238 B
Docker

FROM python:3.11@sha256:db07fba48daaf1c68c03676aadc73866414d25b4c278029f9873c784517613bf
COPY requirements.txt /data/
RUN pip install --no-cache-dir -r /data/requirements.txt
CMD [ "python", "/data/dawdle.py", "/data/data/dawdle.conf"]