Files
ai-novel/Dockerfile

11 lines
360 B
Docker
Raw Normal View History

2026-04-18 12:29:34 +08:00
FROM registry.cn-shenzhen.aliyuncs.com/zuoge-proxy/node:20-alpine AS build
2026-04-17 21:21:47 +08:00
WORKDIR /app
2026-04-17 21:56:49 +08:00
COPY package*.json yarn.lock ./
RUN yarn install --frozen-lockfile
2026-04-17 21:21:47 +08:00
COPY . .
2026-04-17 21:56:49 +08:00
RUN yarn build
2026-04-17 21:21:47 +08:00
2026-04-18 12:29:34 +08:00
# 部署阶段
FROM crpi-an5dzzjadzt6601u.cn-shenzhen.personal.cr.aliyuncs.com/softnook-proxy/nginx:1.27.3-alpine AS app
2026-04-18 12:34:59 +08:00
COPY --from=build /app/dist /usr/share/nginx/html
2026-04-17 21:21:47 +08:00
EXPOSE 80