mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
Интегрирован Docker compose
This commit is contained in:
parent
de44af6881
commit
bf2d6e67cc
9 changed files with 153 additions and 1 deletions
12
chart/Dockerfile
Normal file
12
chart/Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
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"]
|
Loading…
Add table
Reference in a new issue