Improve production image size
This commit is contained in:
parent
a3a573ef00
commit
5e330d8f54
1 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
#Build stage
|
||||
# Build stage
|
||||
FROM node:18-alpine AS build
|
||||
WORKDIR /app
|
||||
COPY package*.json .
|
||||
|
@ -6,11 +6,16 @@ RUN npm ci
|
|||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
#Prod stage
|
||||
FROM node:18-alpine AS production
|
||||
# Deps stage
|
||||
FROM node:18-alpine AS dependencies
|
||||
WORKDIR /app
|
||||
COPY package*.json .
|
||||
RUN npm ci --omit=dev
|
||||
COPY --from=build /app/dist ./dist
|
||||
|
||||
# Prod stage
|
||||
FROM node:18-alpine AS production
|
||||
WORKDIR /app
|
||||
COPY package*.json .
|
||||
COPY --from=build /app/dist ./dist
|
||||
COPY --from=dependencies /app/node_modules ./node_modules
|
||||
CMD ["npm", "run", "start"]
|
Loading…
Reference in a new issue