Update Dockerfile to use Node image for building and copy build artifacts to Nginx image
This commit is contained in:
parent
664b5a1d90
commit
9c1deb92cc
21
Dockerfile
21
Dockerfile
@ -6,13 +6,26 @@
|
|||||||
# RUN npm run build
|
# RUN npm run build
|
||||||
|
|
||||||
# FROM nginx:stable-alpine as production-stage
|
# FROM nginx:stable-alpine as production-stage
|
||||||
# COPY --from=build-stage /app/build /usr/share/nginx/html
|
# COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||||
# COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf
|
# COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf
|
||||||
# EXPOSE 32166
|
# EXPOSE 32166
|
||||||
# CMD ["nginx", "-g", "daemon off;"]
|
# CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
||||||
FROM nginx:stable-alpine
|
# FROM nginx:stable-alpine
|
||||||
COPY /dist /usr/share/nginx/html
|
# COPY /dist /usr/share/nginx/html
|
||||||
COPY /nginx.conf /etc/nginx/nginx.conf
|
# COPY /nginx.conf /etc/nginx/nginx.conf
|
||||||
|
# EXPOSE 32166
|
||||||
|
# CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
||||||
|
# Use official Node image as base image for building
|
||||||
|
FROM node:latest AS builder
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm install
|
||||||
|
COPY . .
|
||||||
|
RUN npm run build
|
||||||
|
FROM nginx:latest
|
||||||
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
||||||
|
COPY --from=builder /app/nginx.conf /etc/nginx/nginx.conf
|
||||||
EXPOSE 32166
|
EXPOSE 32166
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
Loading…
x
Reference in New Issue
Block a user