12 lines
244 B
Docker
12 lines
244 B
Docker
|
FROM python:3.10
|
||
|
|
||
|
COPY clubhaus/requirements.txt /tmp/requirements.txt
|
||
|
RUN pip3 install -r /tmp/requirements.txt
|
||
|
RUN pip3 install gunicorn~=20.1.0
|
||
|
|
||
|
ENV PYTHONDONTWRITEBYTECODE 1
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
|
||
|
ENV DEBUG_MODE=False
|
||
|
WORKDIR /usr/src/app
|