diff --git a/docker/Dockerfile-versioned b/docker/Dockerfile-versioned index f00e86d49..70789e298 100644 --- a/docker/Dockerfile-versioned +++ b/docker/Dockerfile-versioned @@ -5,7 +5,7 @@ ARG DOCKER_VERSION=VERSION RUN apt-get -y install \ docker-ce=${DOCKER_VERSION} \ docker-ce-cli=${DOCKER_VERSION} \ - docker-compose docker-compose-plugin && \ + docker-compose-plugin && \ apt-get clean ENTRYPOINT ["/usr/bin/docker"] diff --git a/go/README.md b/go/README.md index 5afa669d5..15b7efd10 100644 --- a/go/README.md +++ b/go/README.md @@ -1,5 +1,13 @@ # Tool builder: `gcr.io/cloud-builders/go` +## ⚠️ DEPRECATED + +**This builder is deprecated.** Please migrate to the official [`golang`](https://hub.docker.com/_/golang) image instead. + +The `gcr.io/cloud-builders/go` image is no longer actively maintained and does not support current Go versions with security updates. The official `golang` image is actively maintained by the Docker community and provides up-to-date Go tooling and versions. + +--- + The `gcr.io/cloud-builders/go` image is maintained by the Cloud Build team, but it may not support the most recent features or versions of Go. We also do not provide historical pinned versions of Go. diff --git a/mvn/Dockerfile.appengine b/mvn/Dockerfile.appengine index a84998e02..502462434 100644 --- a/mvn/Dockerfile.appengine +++ b/mvn/Dockerfile.appengine @@ -3,7 +3,7 @@ ARG MAVEN_VERSION=latest FROM gcr.io/${PROJECT_ID}/mvn:${MAVEN_VERSION} # install python -RUN apt-get update -y && apt-get install python3 -y +RUN apt-get update -y && apt-get install python3 python -y # install cloud sdk into appengine-maven-plugin cache RUN set -eux; \