From 5375a89a121fc5c9215fe75a3b4b66c7712ba3dd Mon Sep 17 00:00:00 2001 From: anteqkois Date: Mon, 20 May 2024 00:07:13 +0200 Subject: [PATCH] ci(env): fix env name --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index c35953e7..857973b5 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app/builder # Copy the correct environment file based on the build argument `ENVIRONMENT` # COPY .env.${ENVIRONMENT} ./.env -COPY /app/builder/apps/web/.env.prod /app/builder/apps/web/.env +COPY /app/builder/apps/web/.env.prod-build /app/builder/apps/web/.env RUN npx nx run web:build || echo "nx run web:build failed"