fix: Update Dockerfile

This commit is contained in:
Göran Sander
2023-08-16 15:00:56 +02:00
committed by GitHub
parent 9fe552cc11
commit 00cb3a571f

View File

@@ -10,7 +10,7 @@ WORKDIR /nodeapp
# Install app dependencies separately (creating a separate layer for node_modules, effectively caching them between image rebuilds)
COPY package.json .
RUN npm ci
RUN npm i
# Copy app's source files
COPY ./src .