add: dockerfile
All checks were successful
/ update (push) Successful in 0s

This commit is contained in:
ahoemann 2024-12-06 08:09:40 +01:00
parent 4c76eb3f1b
commit 80a0affc4b

6
Dockerfile Normal file
View file

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