Refactor Dockerfile to use multi-stage build and optimize image size
This commit is contained in:
parent
3432aed38b
commit
afbd3f2153
30
Dockerfile
30
Dockerfile
@ -1,20 +1,20 @@
|
|||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
# build stage
|
# build stage
|
||||||
# FROM node:lts-alpine as builder
|
FROM node:lts-alpine as builder
|
||||||
# WORKDIR /apkt
|
WORKDIR /apkt
|
||||||
# COPY package*.json ./
|
COPY package*.json ./
|
||||||
# RUN npm install && npm install npm-run-all -g
|
RUN npm install
|
||||||
# COPY . .
|
COPY . .
|
||||||
# RUN npm run build
|
RUN npm run build
|
||||||
# # production stage
|
# production stage
|
||||||
# FROM nginx:stable-alpine
|
|
||||||
# COPY --from=builder /apkt/dist /usr/share/nginx/html
|
|
||||||
# COPY --from=builder /apkt/nginx.conf /etc/nginx/nginx.conf
|
|
||||||
# EXPOSE 32166
|
|
||||||
# CMD ["nginx", "-g", "daemon off;"]
|
|
||||||
|
|
||||||
FROM nginx:stable-alpine
|
FROM nginx:stable-alpine
|
||||||
COPY /dist /usr/share/nginx/html
|
COPY --from=builder /apkt/dist /usr/share/nginx/html
|
||||||
COPY /nginx.conf /etc/nginx/nginx.conf
|
COPY --from=builder /apkt/nginx.conf /etc/nginx/nginx.conf
|
||||||
EXPOSE 32166
|
EXPOSE 32166
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
||||||
|
# FROM nginx:stable-alpine
|
||||||
|
# COPY /dist /usr/share/nginx/html
|
||||||
|
# COPY /nginx.conf /etc/nginx/nginx.conf
|
||||||
|
# EXPOSE 32166
|
||||||
|
# CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user