1
0
clubhaus-schornbach/Deployment/Live/Dockerfile.python

12 lines
244 B
Docker
Raw Permalink Normal View History

2023-07-24 20:25:48 +02:00
FROM python:3.10
COPY clubhaus/requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
2023-12-18 19:31:12 +01:00
RUN pip3 install gunicorn~=21.2.0
2023-07-24 20:25:48 +02:00
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV DEBUG_MODE=False
WORKDIR /usr/src/app