Containerization

This commit is contained in:
VivianDee
2025-03-20 19:00:32 +01:00
parent f5e9fa5165
commit 999acd6629
16 changed files with 104 additions and 72 deletions
+11
View File
@@ -0,0 +1,11 @@
services:
web:
build: .
ports:
- "5000:5000"
environment:
- FLASK_APP=app.py
- FLASK_RUN_HOST=0.0.0.0
volumes:
- .:/app
restart: always