21 lines
305 B
TOML
21 lines
305 B
TOML
app = "nodejs-dockerfile-func-sample"
|
|
region = "asia-south1"
|
|
handler = "index.handler"
|
|
|
|
[settings.nodejs]
|
|
common_js = true
|
|
|
|
[build]
|
|
builtin = "dockerfile"
|
|
ignorefile = ".gitignore"
|
|
|
|
[build.args]
|
|
param1 = "value1"
|
|
param2 = "value2"
|
|
|
|
[env]
|
|
FOO = "BAR"
|
|
|
|
[http_service]
|
|
internal_port = 3000
|