Files
ai-novel/Dockerfile

10 lines
215 B
Docker
Raw Normal View History

2026-04-17 21:21:47 +08:00
FROM node:20-alpine AS builder
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
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80