fix: resolve Dockerfile path relative to fly.toml directory
commit
4fa5e79fix: 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
Reviews
No reviews of this commit yet — record a verdict below.
Start a review
.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'