添加docker打包相关脚本

This commit is contained in:
2026-04-18 22:56:56 +08:00
parent e8dc59f957
commit df399f3cb8
6 changed files with 178 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
aigc-frontend:
build:
context: .
dockerfile: Dockerfile
container_name: aigc-frontend
ports:
- "8080:80"
# 如需覆盖 API 地址,取消下面注释
# environment:
# - API_TARGET=https://your-api-server.com/path
restart: unless-stopped