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.
This commit is contained in:
David Tuite
2020-11-02 08:05:57 +00:00
committed by GitHub
parent 019278935a
commit 478e17bcf4
@@ -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"]