Kekkai/chart/Dockerfile
Redume 9db37e8300
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
chore(chart): Updated the python version to 3.13 in docker
2024-12-15 11:35:56 +03:00

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"]