fix dockerfile
Some checks failed
docker / docker-push (push) Failing after 28s

This commit is contained in:
2025-12-24 22:31:29 +03:00
parent 642fa81584
commit b175e1d86a

View File

@ -4,6 +4,6 @@ COPY ./src /src
COPY ./requirements.txt /src COPY ./requirements.txt /src
RUN apt update RUN apt update
RUN pip install -r /app/requirements.txt RUN pip install -r /src/requirements.txt
CMD [ "python", "/src/main.py" ] CMD [ "python", "/src/main.py" ]