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