From b9bae9a011a0e428db8ee61b9e76a7c223aaf650 Mon Sep 17 00:00:00 2001 From: Weves Date: Fri, 17 May 2024 10:38:19 -0700 Subject: [PATCH] Add explicit request for standalone dir in web Dockerfile --- web/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/Dockerfile b/web/Dockerfile index 3bd0408c7..a0b16c75d 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -32,6 +32,9 @@ WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . +# needed to get the `standalone` dir we expect later +ENV NEXT_PRIVATE_STANDALONE true + # Disable automatic telemetry collection ENV NEXT_TELEMETRY_DISABLED 1