From 781ae689ad90d753a424eacdebf2b4dbc6c01d17 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Wed, 20 Nov 2024 22:32:37 +0100
Subject: [PATCH] comment NODE_ENV="production" because of error with "yarn
install --production=false ..."
---
admin/Dockerfile | 2 +-
backend/Dockerfile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/admin/Dockerfile b/admin/Dockerfile
index a01903cc3..2e840b1b1 100644
--- a/admin/Dockerfile
+++ b/admin/Dockerfile
@@ -13,7 +13,7 @@ ENV BUILD_VERSION="0.0.0.0"
## We cannot do `$(git rev-parse --short HEAD)` here so we default to 0000000
ENV BUILD_COMMIT="0000000"
## SET NODE_ENV
-ARG NODE_ENV="production"
+# ARG NODE_ENV="production"
## App relevant Envs
ENV PORT="8080"
diff --git a/backend/Dockerfile b/backend/Dockerfile
index 910bdd504..49ab73d59 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -13,7 +13,7 @@ ENV BUILD_VERSION="0.0.0.0"
## We cannot do `$(git rev-parse --short HEAD)` here so we default to 0000000
ENV BUILD_COMMIT="0000000"
## SET NODE_ENV
-ENV NODE_ENV="production"
+#ENV NODE_ENV="production"
## App relevant Envs
ENV PORT="4000"