Initial deployment setup
Deploy staging / deploy (push) Failing after 6s

This commit is contained in:
root
2026-08-31 16:45:24 +09:00
commit 33453ecc55
3475 changed files with 850363 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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"]
}