Files
wishlistbot/Dockerfile
saddydead 4b354afde4
Some checks failed
docker / docker-push (push) Failing after 2m20s
suka
2026-03-11 01:38:14 +03:00

10 lines
185 B
Docker

FROM python:3.13-bookworm
COPY ./src /src
RUN apt update
RUN apt install -y pipx
RUN pipx install poetry
CMD [ "poetry", "install" ]
CMD [ "poetry", "run", "python", "/src/main.py" ]