Files
root 33453ecc55
Deploy staging / deploy (push) Failing after 6s
Initial deployment setup
2026-08-31 16:45:24 +09:00

21 lines
512 B
HCL

group "default" {
targets = ["api", "web"]
}
target "api" {
context = "."
dockerfile = "./docker/api.dockerfile"
tags = ["line/abc-user-feedback-api:latest"]
platforms = ["linux/amd64", "linux/arm64/v8"]
cache-from = ["type=gha"]
cache-to = ["type=gha,mode=max"]
}
target "web" {
context = "."
dockerfile = "./docker/web.dockerfile"
tags = ["line/abc-user-feedback-web:latest"]
platforms = ["linux/amd64", "linux/arm64/v8"]
cache-from = ["type=gha"]
cache-to = ["type=gha,mode=max"]
}