You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
403 B
28 lines
403 B
FROM node:lts-fermium as development
|
|
|
|
WORKDIR /nest-server
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN yarn install --only=development
|
|
|
|
COPY . .
|
|
|
|
RUN yarn run build
|
|
|
|
FROM node:lts-fermium as production
|
|
|
|
ARG NODE_ENV=production
|
|
ENV NODE_ENV=${NODE_ENV}
|
|
|
|
WORKDIR /nest-server
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN yarn install --only=production
|
|
|
|
COPY . .
|
|
|
|
COPY --from=development /nest-server/dist ./dist
|
|
|
|
CMD ["node", "dist/main"]
|