ngx-admin/Dockerfile
2023-01-05 14:12:36 +01:00

11 lines
178 B
Docker

# Stage 1
FROM node:14.15.0 as node
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build --prod
# Stage 2
FROM nginx:alpine
COPY --from=node /app/dist /usr/share/nginx/html