From 2d1ea367e97ecfe66bc1d4c33d120723ec38082c Mon Sep 17 00:00:00 2001 From: Richard Bronkhorst Date: Sun, 11 Jun 2023 21:06:27 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a4ff98..e1fe37c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 [ "python3", "/app/main.py"] CMD ["-s", "/data/"]