git-ents.gitmain
⌘K
foforge
commit 4fa5e79
fix: resolve Dockerfile path relative to fly.toml directory

flyctl resolves the [build].dockerfile path relative to the config file, so the value must step out of .config/.

Assisted-by: Claude:claude-opus-4-8

Joseph D. Carpinelli · 2 months ago

Reviews

No reviews of this commit yet — record a verdict below.

Start a review

verdict

.config/fly.toml @@ -7,7 +7,7 @@ primary_region = 'iad' [build] - dockerfile = "crates/git-ents-server/Dockerfile" + dockerfile = "../crates/git-ents-server/Dockerfile" [env] PORT = '8080'