Files
moveoncomplete/Dockerfile
Matthias Bilger 7279185f1a
Some checks failed
continuous-integration/drone/push Build is failing
updated for python 3.14 and chmod
2025-10-18 17:55:32 +02:00

12 lines
255 B
Docker

FROM python:3.14
VOLUME ["/in", "/out"]
RUN python -m pip install inotify \
&& adduser copyuser --disabled-password --disabled-login --no-create-home --gecos ""
COPY --chown=copyuser:copyuser script.py /
COPY entrypoint.sh /
CMD ["/entrypoint.sh"]