From 58ea1bc98e311a78a93fffed839d0b0d53a6e122 Mon Sep 17 00:00:00 2001 From: Richard Bronkhorst Date: Sun, 11 Jun 2023 21:04:04 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a82171a..fab38ec 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 [ "/app/main.py"] CMD ["-s", "/data/"]