mirror of
https://github.com/Redume/Shirino.git
synced 2024-11-05 16:23:59 +03:00
11 lines
172 B
Text
11 lines
172 B
Text
|
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"]
|