From d005631063bab341e1cee2859843670f483e3bf2 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Tue, 1 Feb 2022 16:52:26 -0600 Subject: [PATCH] Update npm comment in Docker example (#33881) --- 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