1
0
Fork 0
mirror of https://github.com/Redume/Shirino.git synced 2025-03-14 18:37:51 +03:00
Shirino/Dockerfile

11 lines
No EOL
179 B
Docker

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