ktlo moment
Some checks failed
docker / docker-push (push) Failing after 24s

This commit is contained in:
2026-03-11 14:02:21 +03:00
parent 5fe610882b
commit c7dc07543a
2 changed files with 4 additions and 9 deletions

View File

@ -1,14 +1,7 @@
FROM python:3.13-bookworm
ENV POETRY_HOME="/opt/poetry"
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
ENV PATH="$POETRY_HOME/bin:$PATH"
COPY ./src /src
RUN apt update
RUN apt install -y pipx
RUN pipx install poetry
RUN pip install -r requirements.txt
CMD [ "poetry", "install" ]
CMD [ "poetry", "run", "python", "/src/main.py" ]
CMD [ "python", "/src/main.py" ]