spin-frontend/Dockerfile
admin 69e641e271
All checks were successful
build-and-push / build (push) Successful in 21s
scaffold: Dockerfile + Gitea Actions workflow + .env.sample
2026-06-27 22:01:05 +00:00

9 lines
345 B
Docker

# Placeholder Dockerfile — nginx-unprivileged 기반 static serve, port 8080.
# 실제 코드 추가 후 본인 stack(Node/Python/Go 등)으로 교체 권장.
FROM nginxinc/nginx-unprivileged:1.27-alpine
# 정적 파일 (html/css/js) 또는 SPA build output 을 root 에 복사.
COPY --chown=nginx:nginx . /usr/share/nginx/html/
EXPOSE 8080