From bb9c0706c35e72a26b5a62d60b4cbd771cd88406 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 12 Apr 2023 19:39:37 -0600 Subject: [PATCH] Build with hosting config file (#321) --- app/build_npms.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build_npms.py b/app/build_npms.py index 877916be..3750c4bd 100644 --- a/app/build_npms.py +++ b/app/build_npms.py @@ -119,7 +119,9 @@ def command(ctx, include, exclude): # Originally we used the PEP 584 merge operator: # envs = {"CERC_NPM_AUTH_TOKEN": npm_registry_url_token} | ({"CERC_SCRIPT_DEBUG": "true"} if debug else {}) # but that isn't available in Python 3.8 (default in Ubuntu 20) so for now we use dict.update: - envs = {"CERC_NPM_AUTH_TOKEN": npm_registry_url_token} + envs = {"CERC_NPM_AUTH_TOKEN": npm_registry_url_token, + "LACONIC_HOSTED_CONFIG_FILE": "config-hosted.yml" # Convention used by our web app packages + } envs.update({"CERC_SCRIPT_DEBUG": "true"} if debug else {}) try: docker.run(builder_js_image_name,