diff --git a/Dockerfile b/Dockerfile index 527ece0..866c9ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ WORKDIR /app COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt COPY . . -RUN chmod +x /run_waitress.py +RUN chmod +x run_waitress.py EXPOSE 5580 -ENTRYPOINT ["python3", "/run_waitress.py"] \ No newline at end of file +ENTRYPOINT ["python3", "run_waitress.py"] \ No newline at end of file