From c37ea9b1cb1005fd70faedd64f2cf3f499144397 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Tue, 1 Feb 2022 15:52:56 -0600 Subject: [PATCH] Update npm comment in Docker example --- examples/with-docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/with-docker/Dockerfile b/examples/with-docker/Dockerfile index 57635340bb16f..0182d790e8d00 100644 --- a/examples/with-docker/Dockerfile +++ b/examples/with-docker/Dockerfile @@ -7,8 +7,8 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile # If using npm with a `package-lock.json` comment out above and use below instead -# COPY package.json package-lock.json / -# RUN npm install +# COPY package.json package-lock.json ./ +# RUN npm ci # Rebuild the source code only when needed FROM node:16-alpine AS builder