mensa-parser/Dockerfile

9 lines
179 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 . .
2023-02-04 18:17:08 +01:00
EXPOSE 8000
2023-02-04 10:40:47 +01:00
CMD ["gunicorn", "-b", "0.0.0.0", "app:app"]