From 4cad08d821f224d4d9b6aaf09ac21433a8f012c1 Mon Sep 17 00:00:00 2001 From: Austin Peterson Date: Thu, 31 Oct 2024 07:57:53 -0600 Subject: [PATCH] Update Dockerfile to use npm ci (#880) --- other/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/Dockerfile b/other/Dockerfile index 1e54b070..3e23472b 100644 --- a/other/Dockerfile +++ b/other/Dockerfile @@ -15,7 +15,7 @@ FROM base as deps WORKDIR /myapp ADD package.json package-lock.json .npmrc ./ -RUN npm install --include=dev +RUN npm ci --include=dev # Setup production node_modules FROM base as production-deps