Files
moveoncomplete/Dockerfile
Matthias Bilger 9f82cd06d3
All checks were successful
continuous-integration/drone/push Build is passing
username update
2019-10-24 08:29:49 +02:00

12 lines
254 B
Docker

FROM python:3.7
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"]