mensa-parser/Dockerfile

8 lines
167 B
Text
Raw Normal View History

2023-02-04 10:40:47 +01:00
FROM python:3.10
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0", "app:app"]