diff --git a/Dockerfile b/Dockerfile index d9913ff..ed61a7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.9-slim WORKDIR /app -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r /app/requirements.txt COPY . . ENTRYPOINT [ "python", "-u", "/app/main.py" ] \ No newline at end of file