diff --git a/Dockerfile b/Dockerfile index b9f9e64..c897398 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM python:3.13-bookworm COPY ./src /src +COPY ./requirements.txt /src -RUN pip install -r requirements.txt +RUN apt update +RUN pip install -r /src/requirements.txt CMD [ "python", "/src/main.py" ] \ No newline at end of file