This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ===========================================================> The common stage | |
FROM node:16.14 AS base | |
ENV NODE_ENV=production | |
WORKDIR /app | |
COPY package*.json ./ | |
RUN npm ci --only=production | |
## Remove unnecessary files from `node_modules` directory |