mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
Some checks failed
Create and publish a Docker image / build-and-push-server (push) Has been cancelled
Create and publish a Docker image / build-and-push-chart (push) Has been cancelled
Create and publish a Docker image / build-and-push-CR (push) Has been cancelled
Deploy docs / deploy (push) Has been cancelled
12 lines
No EOL
169 B
Docker
12 lines
No EOL
169 B
Docker
FROM python:3.13
|
|
|
|
WORKDIR /
|
|
|
|
COPY ./requirements.txt ./
|
|
|
|
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3030
|
|
CMD ["python", "main.py"] |