Adrianux.net/Dockerfile

7 lines
141 B
Text
Raw Normal View History

2024-12-06 07:09:40 +00:00
FROM python
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["waitress-serve", "--listen=0.0.0.0:8080", "app:app"]
EXPOSE 8080