Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile-versioned
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
8 changes: 8 additions & 0 deletions go/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion mvn/Dockerfile.appengine
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down