Files
penisbot/Dockerfile
saddydead1 b175e1d86a
Some checks failed
docker / docker-push (push) Failing after 28s
fix dockerfile
2025-12-24 22:31:29 +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 /src/requirements.txt
CMD [ "python", "/src/main.py" ]