mirror of
https://github.com/Redume/Kekkai-web.git
synced 2024-11-21 15:56:23 +03:00
13 lines
170 B
Text
13 lines
170 B
Text
|
FROM python:3.12
|
||
|
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY ./requirements.txt ./
|
||
|
|
||
|
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
EXPOSE 9000
|
||
|
|
||
|
CMD ["python", "main.py"]
|