Given the following fly.toml
config file I would expect that someone running it under their account would be able to deploy it directly. What’s happening currently is that the cli is printing Could not find a Dockerfile, nor detect a runtime or framework from source code. Continuing with a blank app.
even tho the build
section is set in the file.
Am I doing something wrong?
app = "white-dawn-7370"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[experimental]
allowed_public_ports = []
auto_rollback = true
[build]
image = "blockstack/stacks-blockchain-api:1.0.5"
[[services]]
http_checks = []
internal_port = 3999
processes = ["app"]
protocol = "tcp"
script_checks = []
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
To reproduce create a fly.toml
file with the content of the code snippet and run fly launch
.
Best