Files
wishlistbot/Dockerfile
saddydead 16e033e2a4
All checks were successful
docker / docker-push (push) Successful in 59s
1
2026-03-11 14:35:13 +03:00

9 lines
175 B
Docker

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