From 141f5f400b3fcda2eeafcc93ce1684776bc15bbf Mon Sep 17 00:00:00 2001 From: Dex Burgess Date: Fri, 16 Aug 2024 03:26:20 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 42713ba..e94943d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN yarn install # Rebuild the source code only when needed FROM node:20-alpine AS builder +ENV NEXT_PRIVATE_STANDALONE true + WORKDIR /app COPY --from=deps /app/node_modules ./node_modules