feat: add Docker deployment — multi-stage build + nginx SPA serving

This commit is contained in:
kevin-asprec
2026-03-17 04:13:40 +08:00
parent 5376d1b1d5
commit 2340ae58c6
4 changed files with 66 additions and 0 deletions

9
docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
services:
taptrack-website:
build:
context: .
dockerfile: Dockerfile
container_name: taptrack-website
ports:
- "3000:80"
restart: unless-stopped