add production server to dockerfile
All checks were successful
ci / docker (push) Successful in 3m21s

This commit is contained in:
Ultrablob 2025-01-22 16:17:23 -05:00
parent f52d216ae9
commit c74c71df5f
2 changed files with 3 additions and 2 deletions

View file

@ -6,4 +6,4 @@ RUN pip install -r requirements.txt
COPY . . COPY . .
CMD ["python", "./main.py"] CMD ["waitress-serve", "main:app"]

View file

@ -1,3 +1,4 @@
flask flask
redis redis
requests requests
waitress