From 69f558ecaa353d846c0953c8ae58a0769acd5ca3 Mon Sep 17 00:00:00 2001 From: VPhung24 Date: Wed, 16 Oct 2024 18:55:55 +0000 Subject: [PATCH] app type webapp/snowball/nextjs --- stack_orchestrator/deploy/webapp/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stack_orchestrator/deploy/webapp/util.py b/stack_orchestrator/deploy/webapp/util.py index c6b6a786..1e6b1058 100644 --- a/stack_orchestrator/deploy/webapp/util.py +++ b/stack_orchestrator/deploy/webapp/util.py @@ -481,6 +481,8 @@ def determine_base_container(clone_dir, app_type="webapp"): raise Exception(f"Unsupported app_type {app_type}") base_container = "cerc/webapp-base" + if app_type == "webapp/snowball/nextjs": + base_container = "cerc/nextjs-snowball" if app_type == "webapp/next": base_container = "cerc/nextjs-base" elif app_type == "webapp":