taiko-web/Dockerfile

7 lines
172 B
Docker
Raw Normal View History

2024-03-04 04:05:11 +01:00
FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
2024-04-06 20:32:02 +02:00
ENV PYTHONUNBUFFERED 1
2024-04-19 17:36:05 +02:00
CMD ["gunicorn", "app:app", "--access-logfile", "-", "--bind", "0.0.0.0"]