Add npm install

This commit is contained in:
Gal 2023-12-26 13:57:39 +01:00 committed by Galuh Sahid
parent e8bb94211e
commit 5d78628ab0
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ WORKDIR /usr/src/app
COPY package.json . COPY package.json .
COPY package-lock.json* . COPY package-lock.json* .
RUN npm ci RUN npm ci
RUN npm install
FROM node:20-slim FROM node:20-slim
WORKDIR /usr/src/app WORKDIR /usr/src/app