taiko-web/Dockerfile

6 lines
109 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
CMD ["waitress-serve", "app:app"]