Kekkai/chart/Dockerfile
Redume 23fc87b524
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
fix(docker): Fixed chart service build
2024-12-29 13:36:21 +03:00

12 lines
No EOL
239 B
Docker

FROM python:3.13-alpine
WORKDIR /
COPY . .
RUN apk add --no-cache gcc g++ musl-dev python3-dev libffi-dev openssl-dev postgresql-dev
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
EXPOSE 3030
CMD ["python", "main.py"]