suka
Some checks failed
docker / docker-push (push) Failing after 2m20s

This commit is contained in:
2026-03-11 01:38:14 +03:00
parent 5167befb55
commit 4b354afde4

View File

@ -3,7 +3,8 @@ FROM python:3.13-bookworm
COPY ./src /src COPY ./src /src
RUN apt update RUN apt update
RUN curl -sSL https://install.python-poetry.org | python3 - RUN apt install -y pipx
RUN pipx install poetry
CMD [ "poetry", "install" ] CMD [ "poetry", "install" ]
CMD [ "poetry", "run", "python", "/src/main.py" ] CMD [ "poetry", "run", "python", "/src/main.py" ]