Shirino/Dockerfile

11 lines
179 B
Text
Raw Normal View History

2025-01-08 20:09:14 +03:00
FROM python:3.12-alpine
2024-09-28 15:16:52 +03:00
WORKDIR /shirino
COPY ./requirements.txt .
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY ./ /shirino/
CMD ["python", "main.py"]