Add docker support and automatic docker build

This commit is contained in:
csd4ni3l
2025-10-04 10:00:07 +02:00
parent 28738202f6
commit 46245998d2
7 changed files with 169 additions and 5 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
debt-by-ai:
build: .
container_name: debt-by-ai
ports:
- "8080:8080"
environment:
HOST: "0.0.0.0"
PORT: "8080"
DEBUG_MODE: "false"
USE_HACKCLUB_AI: "false"
GEMINI_API_KEY: "changeme"
FLASK_SECRET_KEY: "changeme"
DB_FILE: "/app/data.db"
volumes:
- ./data.db:/app/data.db
restart: unless-stopped