From b2a62c341b3f55b47daaaf1ce953d1e23c3ff099 Mon Sep 17 00:00:00 2001 From: Giulio Bracci Date: Fri, 24 Oct 2025 13:57:08 +0200 Subject: [PATCH] fix(example): staging Dockerfile using production env This commit fixes the `Dockerfile` using the wrong .env --- examples/with-docker-multi-env/docker/staging/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-docker-multi-env/docker/staging/Dockerfile b/examples/with-docker-multi-env/docker/staging/Dockerfile index 9881c1a56fd63e..8f39579fe3f6ab 100644 --- a/examples/with-docker-multi-env/docker/staging/Dockerfile +++ b/examples/with-docker-multi-env/docker/staging/Dockerfile @@ -25,7 +25,7 @@ WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . # This will do the trick, use the corresponding env file for each environment. -COPY .env.staging.sample .env.production +COPY .env.staging.sample .env.staging RUN npm run build # 3. Production image, copy all the files and run next