- 56 套模板元数据(35 Figma 原生 + 21 非 Figma) - 静态展示站 (HTML/CSS/JS 无框架):格式筛选、lightbox、搜索 - 35 个 .fig 已真上传 Figma Drafts 云端 - iframe 实时投射(登录态可看私有 Drafts) - 部署:nginx:alpine + basic-auth (kang) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
174 B
Docker
10 lines
174 B
Docker
FROM nginx:alpine
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY .htpasswd /etc/nginx/.htpasswd
|
|
|
|
COPY web/ /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|