From 7cfe7e1a2b673e93260207a30af8e493b3036bba Mon Sep 17 00:00:00 2001 From: Filip Borum Poulsen Date: Wed, 19 Apr 2023 11:07:44 +0200 Subject: [PATCH] Changed npm install -> npm ci --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 1bd21fa..e165175 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine AS builder WORKDIR /app COPY . . -RUN npm install +RUN npm ci RUN npm run build FROM nginx:1.23.4-alpine