Kekkai/chart/Dockerfile

12 lines
239 B
Text
Raw Normal View History

FROM python:3.13-alpine
WORKDIR /
COPY . .
2024-12-29 13:36:21 +03:00
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"]