Files
wishlistbot/Dockerfile
saddydead 5167befb55
Some checks failed
docker / docker-push (push) Has been cancelled
POETRY ЕБАНЫЙ
2026-03-11 01:35:02 +03:00

9 lines
197 B
Docker

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