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
## NodeJS Typescript multi-stage docker image ## | |
# build project with typescript | |
FROM node:16.15.1-stretch as ts-compiler | |
WORKDIR /app | |
COPY package*.json ./ | |
COPY tsconfig*.json ./ | |
RUN npm install | |
COPY . ./ | |
RUN npm run build |