From 2a993fb220ae06a3425af6e34d5cc978a5ef9604 Mon Sep 17 00:00:00 2001 From: Kelly Joseph Price Date: Fri, 8 Mar 2024 13:19:03 -0800 Subject: [PATCH] build: use npm-shrinkwrap (#836) * build: use npm-shrinkwrap * fix: docker ffile --- Dockerfile | 2 +- package-lock.json => npm-shrinkwrap.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename package-lock.json => npm-shrinkwrap.json (100%) diff --git a/Dockerfile b/Dockerfile index ae455b6f4..a5e40f34a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN npm install -g npm@latest ENV DOCKER_WORKSPACE=/markdown WORKDIR ${DOCKER_WORKSPACE} -COPY package.json package-lock.json ./ +COPY package.json npm-shrinkwrap.json ./ RUN npm install COPY . ./ diff --git a/package-lock.json b/npm-shrinkwrap.json similarity index 100% rename from package-lock.json rename to npm-shrinkwrap.json