mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
12 lines
169 B
Text
12 lines
169 B
Text
|
FROM python:3.12
|
||
|
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY ./requirements.txt ./
|
||
|
|
||
|
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
EXPOSE 3030
|
||
|
CMD ["python", "main.py"]
|