From 69371182e280981d58d1c5c9665b661a930c834a Mon Sep 17 00:00:00 2001 From: GibboK <17195702+gibbok@users.noreply.github.com> Date: Fri, 27 Nov 2020 12:00:27 +0100 Subject: [PATCH] Update build-images.md Update content for complete Dockerfile as mentioned in the previous step --- get-started/nodejs/build-images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/nodejs/build-images.md b/get-started/nodejs/build-images.md index 8641664da94b..9fba4bb2642f 100644 --- a/get-started/nodejs/build-images.md +++ b/get-started/nodejs/build-images.md @@ -153,7 +153,7 @@ WORKDIR /app COPY ["package.json", "package-lock.json*", "./"] -RUN npm install +RUN npm install --production COPY . .