Shirino/Dockerfile
2024-09-28 15:16:52 +03:00

11 lines
No EOL
172 B
Docker

FROM python:3.12
WORKDIR /shirino
COPY ./requirements.txt .
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY ./ /shirino/
CMD ["python", "main.py"]