Skip to content

Commit 64bc67a

Browse files
committed
fix(ui): update command default for ui container
1 parent 93a2058 commit 64bc67a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/ad-hoc/app/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ variable "django_settings_module" {
104104

105105
variable "frontend_command" {
106106
description = "Command to run in the frontend container"
107-
default = ["nginx", "-g", "daemon off;"]
107+
default = ["node", ".output/server/index.mjs"]
108108
type = list(string)
109109
}
110110

modules/prod/app/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ variable "api_memory" {
126126

127127
variable "frontend_command" {
128128
description = "Command to run in the frontend container"
129-
default = ["nginx", "-g", "daemon off;"]
129+
default = ["node", ".output/server/index.mjs"]
130130
type = list(string)
131131
}
132132

0 commit comments

Comments
 (0)