Hi,
I’m encountering the following error when attempting to deploy:
Error: failed to fetch an image or build from source: app does not have a Dockerfile or buildpacks configured. See https://fly.io/docs/reference/configuration/#the-build-section
My fly.toml
file includes the following configuration, which used to work without any issues:
[build]
builder = "heroku/builder:22"
I haven’t made any changes to the file, but the deployment suddenly stopped working today.
Any tips?
Here’s my fly.toml
app = "myappname"
primary_region = "ams"
kill_signal = "SIGINT"
kill_timeout = "5s"
[experimental]
cmd = ["node index.js"]
auto_rollback = true
[build]
builder = "heroku/builder:22"
[deploy]
strategy = "immediate"
[[mounts]]
source = "player_data"
destination = "/data"