app type webapp/snowball/nextjs
Some checks failed
Lint Checks / Run linter (pull_request) Successful in 33s
Deploy Test / Run deploy test suite (pull_request) Failing after 33s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Failing after 33s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Failing after 29s
Webapp Test / Run webapp test suite (pull_request) Failing after 30s
Smoke Test / Run basic test suite (pull_request) Failing after 29s

This commit is contained in:
VPhung24 2024-10-16 18:55:55 +00:00
parent a00a600588
commit 69f558ecaa

View File

@ -481,6 +481,8 @@ def determine_base_container(clone_dir, app_type="webapp"):
raise Exception(f"Unsupported app_type {app_type}") raise Exception(f"Unsupported app_type {app_type}")
base_container = "cerc/webapp-base" base_container = "cerc/webapp-base"
if app_type == "webapp/snowball/nextjs":
base_container = "cerc/nextjs-snowball"
if app_type == "webapp/next": if app_type == "webapp/next":
base_container = "cerc/nextjs-base" base_container = "cerc/nextjs-base"
elif app_type == "webapp": elif app_type == "webapp":