feat(ops): add Makefile, Dockerfile, and K8s manifests

This commit is contained in:
2026-04-28 05:19:53 +02:00
parent c7ab5d8689
commit d37853e1a6
6 changed files with 160 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: '3.8'
services:
app:
build: .
ports:
- "3000:3000"
volumes:
- ./data:/data
environment:
- DATABASE_URL=sqlite:/data/attendance.db
- STATIC_DIR=/app/frontend/build
restart: always