|
@@ -82,8 +82,7 @@ target "default" {
|
|
|
}
|
|
|
contexts = {
|
|
|
php-base = "docker-image://php:${php-version}-zts-${os}"
|
|
|
- # FIXME: temporary workaround for https://github.com/dunglas/symfony-docker/issues/646
|
|
|
- golang-base = "docker-image://golang:${os == "alpine" ? "1.22.4" : GO_VERSION}-${os}"
|
|
|
+ golang-base = "docker-image://golang:${GO_VERSION}-${os}"
|
|
|
}
|
|
|
dockerfile = os == "alpine" ? "alpine.Dockerfile" : "Dockerfile"
|
|
|
context = "./"
|
|
@@ -92,7 +91,8 @@ target "default" {
|
|
|
platforms = os == "alpine" ? [
|
|
|
"linux/amd64",
|
|
|
"linux/386",
|
|
|
- "linux/arm/v6",
|
|
|
+ # FIXME: armv6 doesn't build in GitHub actions because we use a custom Go build
|
|
|
+ #"linux/arm/v6",
|
|
|
"linux/arm/v7",
|
|
|
"linux/arm64",
|
|
|
] : [
|
|
@@ -120,9 +120,7 @@ target "default" {
|
|
|
|
|
|
target "static-builder" {
|
|
|
contexts = {
|
|
|
- # FIXME: temporary workaround for https://github.com/dunglas/symfony-docker/issues/646
|
|
|
- #golang-base = "docker-image://golang:${GO_VERSION}-alpine"
|
|
|
- golang-base = "docker-image://golang:1.22.4-alpine"
|
|
|
+ golang-base = "docker-image://golang:${GO_VERSION}-alpine"
|
|
|
}
|
|
|
dockerfile = "static-builder.Dockerfile"
|
|
|
context = "./"
|