Files
moveoncomplete/Dockerfile
Matthias Bilger 42f377f497
Some checks failed
continuous-integration/drone/push Build is failing
allow usage of userid
2019-10-23 20:43:29 +02:00

12 lines
245 B
Docker

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