Files
wishlistbot/Dockerfile
saddydead 49b99bc779
Some checks failed
docker / docker-push (push) Failing after 1m30s
okak 2
2026-03-11 01:31:34 +03:00

10 lines
182 B
Docker

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