Files
schisandra-cloud-album-front/build.Dockerfile
2025-01-13 19:30:29 +08:00

18 lines
191 B
Docker

FROM node:22.12.0 as build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80