diff --git a/Dockerfile b/Dockerfile index 25cf6f6957535749fbf2164baca9297a3aa951e7..a4c1d81bf89df9f66d131c7a68b396c244c58aaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM node:14.15.1 as builder # Copy the package.json file first in order to cache the modules COPY ./package.json /app/package.json +COPY ./package-lock.json /app/package-lock.json WORKDIR /app # Install npm dependencies RUN npm install