From 478e17bcf4e12f370ef597c47501a62fb34bc6d1 Mon Sep 17 00:00:00 2001 From: David Tuite Date: Mon, 2 Nov 2020 08:05:57 +0000 Subject: [PATCH] Apply development config in Helm charts (#3161) This isn't the best fix because we're still using NODE_ENV=development in a "production" environment. Ideally we would stop doing this. Right now, the Helm charts are broken because they deploy the backend straight into Error state.. This change will unbreak them for the moment. --- contrib/docker/kubernetes-example-backend/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/contrib/docker/kubernetes-example-backend/Dockerfile b/contrib/docker/kubernetes-example-backend/Dockerfile index df617decf5..b7d7a9631e 100644 --- a/contrib/docker/kubernetes-example-backend/Dockerfile +++ b/contrib/docker/kubernetes-example-backend/Dockerfile @@ -30,6 +30,4 @@ RUN yarn install --frozen-lockfile --production # Do not use this Dockerfile outside of that command, as it will copy in the source code instead. COPY . . -CMD ["node", "packages/backend"] - - +CMD ["node", "packages/backend", "--config", "app-config.yaml", "--config", "app-config.development.yaml"]