- docker-compose.yml:去 acme,web 端口 2000(WEB_PORT),CORS_ORIGINS/COOKIE_SECURE 直配,清理证书 volumes - frontend nginx 模板/Dockerfile:纯 HTTP :2000,删自签证书 + cert-watch 入口脚本 - 删除 install.sh、.env.docker.example(compose 直接 up,不再需要一键脚本/模板) - README(中英):部署改为 Docker(2000端口反代)+ 源码两法;去 acme/自动 HTTPS 表述;结构/徽章同步;顶部加 Vivid logo(favicon.svg);视频 720p/1080p 分辨率对照表(DocsView) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 lines
635 B
Docker
19 lines
635 B
Docker
# syntax=docker/dockerfile:1
|
|
# Frontend is open-source: built from source inside the image, then served by
|
|
# nginx (HTTP only on :2000) which also reverse-proxies the API. TLS + domain are
|
|
# handled by the user's own reverse proxy in front of this container.
|
|
# ---- build stage ----
|
|
FROM node:22-alpine AS build
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# ---- serve stage ----
|
|
FROM nginx:1.27-alpine
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
# Plain config (no envsubst / no ${DOMAIN}) — copied straight into conf.d.
|
|
COPY default.conf.template /etc/nginx/conf.d/default.conf
|
|
EXPOSE 2000
|