From fd3a78ff1ac1bdd40011b39ab2e7e2fe70d9fe13 Mon Sep 17 00:00:00 2001 From: Moritz Becker Date: Tue, 27 Aug 2024 06:03:56 +0200 Subject: [PATCH] fix(official-website/Dockerfile): use `npm install` instead of `npm ci` --- apps/official-website/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/official-website/Dockerfile b/apps/official-website/Dockerfile index 54b0a5a..1d75a98 100644 --- a/apps/official-website/Dockerfile +++ b/apps/official-website/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy the rest of the application code COPY . .