python-buildpack-app-sample/fc.toml

28 lines
547 B
TOML

app = "python-buildpack-app-sample"
region = "asia-south1"
handler = ""
entrypoint = "index.py"
[build]
buildpack_builder = "paketobuildpacks/builder-jammy-base"
buildpacks = ["paketo-buildpacks/python"]
ignorefile = ".gitignore"
[build.args]
foo = "bar"
[env]
FOO = "BAR"
[http_service]
internal_port = 3000
[[http_service.checks]]
interval = "1m21s"
timeout = "7s"
grace_period = "2s"
method = "GET"
path = "/"
protocol = "http"
[http_service.checks.headers]
My-Custom-Header = "whatever"