From 87ea73adf2b1983f564eacaf5c8850f53f0583ad Mon Sep 17 00:00:00 2001 From: Chris Midgley Date: Fri, 4 Mar 2022 09:34:01 +0000 Subject: [PATCH] fix(examples/with-docker): add npm comment for yarn build --- examples/with-docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/with-docker/Dockerfile b/examples/with-docker/Dockerfile index 9a478dd0b6c7..67bec4d37092 100644 --- a/examples/with-docker/Dockerfile +++ b/examples/with-docker/Dockerfile @@ -23,6 +23,9 @@ COPY . . RUN yarn build +# If using npm comment out above and use below instead +# RUN npm run build + # Production image, copy all the files and run next FROM node:16-alpine AS runner WORKDIR /app