From 21311a6eca511bd8d435ff8d600bc974a6afbc4d Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Wed, 30 Mar 2022 07:55:16 +0200 Subject: [PATCH] =?UTF-8?q?fix(docker):=20=F0=9F=90=9B=20Attempt=20to=20fi?= =?UTF-8?q?x=20prerender=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a0cc6afaa..95ac8ac59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ FROM base AS builder COPY --from=installer /app/ . COPY --from=pruner /app/out/full/ . RUN apt-get -qy update && apt-get -qy install openssl -RUN yarn turbo run build --scope=${SCOPE} --include-dependencies +RUN yarn turbo run build --scope=${SCOPE} --include-dependencies --no-deps RUN find . -name node_modules | xargs rm -rf FROM base AS runner