fart
Some checks failed
Ruby Lint / lint (push) Successful in 15s
Release / docker (push) Failing after 6m1s
Ruby Test / test (push) Successful in 15s

This commit is contained in:
2025-06-28 16:12:05 -05:00
parent 533cea3b26
commit fafe0bc0bd

View File

@ -9,18 +9,21 @@ target "_common" {
args = { args = {
RUBY_VERSION = "3.4.4" RUBY_VERSION = "3.4.4"
} }
platforms = [
"linux/amd64",
"linux/arm64",
]
} }
target "bookworm" { target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile" dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common", "docker-metadata-action" ] inherits = [ "_common", "docker-metadata-action" ]
platforms = [
"linux/amd64",
]
} }
target "alpine" { target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile" dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common", "docker-metadata-action-alpine" ] inherits = [ "_common", "docker-metadata-action-alpine" ]
platforms = [
"linux/amd64",
"linux/arm64",
]
} }