Unable to deploy, hangs on builder status

Trying to run fly deploy on a simple sveltekit app, worked a few months ago. Didnt do anything to deployment, and it just hangs on the status line for heroku builder. Swapped builder based on whats in the docs.

Line it hangs on

Digest: sha256:8de349621dfa7e6e7bd3e3deda5943c30a8ac678127551845fe00d16a9b7d195
Status: Downloaded newer image for gcr.io/paketo-buildpacks/nodejs:latest

fly.toml

app = "subtractinator"
primary_region = "arn"
kill_signal = "SIGINT"
kill_timeout = "5s"

[experimental]
  auto_rollback = true

[build]
  builder = "paketobuildpacks/builder:base"
  buildpacks = ["gcr.io/paketo-buildpacks/nodejs"]

[deploy]
  strategy = "immediate"

[env]
  NODE_ENV = "production"
  PORT = "8080"

[[services]]
  protocol = "tcp"
  internal_port = 8080
  processes = ["app"]

  [[services.ports]]
    port = 80
    handlers = ["http"]
    force_https = true

  [[services.ports]]
    port = 443
    handlers = ["tls", "http"]
  [services.concurrency]
    type = "connections"
    hard_limit = 25
    soft_limit = 20

  [[services.tcp_checks]]
    interval = "15s"
    timeout = "2s"
    grace_period = "1s"

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.