Files
wishlistbot/Dockerfile
saddydead 1b928bde8c
All checks were successful
docker / docker-push (push) Successful in 49s
a
2026-03-12 19:50:15 +03:00

8 lines
160 B
Docker

FROM python:3.13-bookworm
COPY ./src /src
COPY ./requirements.txt /src
RUN pip install -r /src/requirements.txt
CMD [ "python", "/src/wishlist_bot/main.py" ]