Update Dockerfile

This commit is contained in:
Richard Bronkhorst 2023-06-11 21:04:04 +02:00
parent 1c46d25081
commit 58ea1bc98e

View File

@ -6,7 +6,7 @@ ADD --chown=user requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip3 install -r requirements.txt
ADD --chown=user . /app
RUN chmod +x /app/commander.py
RUN chmod +x /app/main.py
VOLUME /data
ENTRYPOINT [ "/app/main.py"]
CMD ["-s", "/data/"]