Kekkai/chart/Dockerfile
Redume aef3eeb793
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(docker): Lighten the weight of docker images through the use of alpine images
2024-12-27 16:50:12 +03:00

10 lines
No EOL
148 B
Docker

FROM python:3.13-alpine
WORKDIR /
COPY . .
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
EXPOSE 3030
CMD ["python", "main.py"]