Files
penisbot/Dockerfile
saddydead1 642fa81584
Some checks failed
docker / docker-push (push) Failing after 3m32s
first commit
2025-12-24 22:13:09 +03:00

9 lines
162 B
Docker

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