# 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
