Adrianux.net/Dockerfile
ahoemann 80a0affc4b
All checks were successful
/ update (push) Successful in 0s
add: dockerfile
2024-12-06 08:09:40 +01:00

6 lines
141 B
Docker

FROM python
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["waitress-serve", "--listen=0.0.0.0:8080", "app:app"]
EXPOSE 8080