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/"]