From 34bde656a18abd4462e58e8379966eb56b1d4498 Mon Sep 17 00:00:00 2001 From: Efstathios Chouliaris Date: Fri, 10 Apr 2026 10:57:13 -0500 Subject: [PATCH] Update goenv clone URLs `master` branch will no longer be the default and move to `main`. `master` is the legacy v2 model and `main` is v3 - a fully go-based CLI. We will need some time to migrate these images to use the compiled binaries instead and add support for all platforms/archs. We plan to keep support until EoY 2028. This will give us plenty of time to test and migrate everything safely and correctly --- al/aarch64/standard/2.0/Dockerfile | 2 +- al/aarch64/standard/3.0/Dockerfile | 2 +- al/aarch64/standard/4.0/Dockerfile | 2 +- al/x86_64/standard/4.0/Dockerfile | 2 +- al/x86_64/standard/5.0/Dockerfile | 2 +- al/x86_64/standard/6.0/Dockerfile | 2 +- ubuntu/standard/5.0/Dockerfile | 2 +- ubuntu/standard/6.0/Dockerfile | 2 +- ubuntu/standard/7.0/Dockerfile | 2 +- ubuntu/standard/8.0/Dockerfile | 2 +- unsupported_images/al2/x86_64/standard/1.0/Dockerfile | 2 +- unsupported_images/al2/x86_64/standard/2.0/Dockerfile | 2 +- unsupported_images/al2/x86_64/standard/3.0/Dockerfile | 2 +- unsupported_images/ubuntu/standard/1.0/Dockerfile | 2 +- unsupported_images/ubuntu/standard/2.0/Dockerfile | 2 +- unsupported_images/ubuntu/standard/3.0/Dockerfile | 2 +- unsupported_images/ubuntu/standard/4.0/Dockerfile | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/al/aarch64/standard/2.0/Dockerfile b/al/aarch64/standard/2.0/Dockerfile index 86452102..393367a5 100644 --- a/al/aarch64/standard/2.0/Dockerfile +++ b/al/aarch64/standard/2.0/Dockerfile @@ -119,7 +119,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/al/aarch64/standard/3.0/Dockerfile b/al/aarch64/standard/3.0/Dockerfile index 342b9269..7dec84bd 100644 --- a/al/aarch64/standard/3.0/Dockerfile +++ b/al/aarch64/standard/3.0/Dockerfile @@ -157,7 +157,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/al/aarch64/standard/4.0/Dockerfile b/al/aarch64/standard/4.0/Dockerfile index f3fa5fb8..37ae34e4 100644 --- a/al/aarch64/standard/4.0/Dockerfile +++ b/al/aarch64/standard/4.0/Dockerfile @@ -156,7 +156,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/al/x86_64/standard/4.0/Dockerfile b/al/x86_64/standard/4.0/Dockerfile index 7af12b68..e34134b7 100644 --- a/al/x86_64/standard/4.0/Dockerfile +++ b/al/x86_64/standard/4.0/Dockerfile @@ -122,7 +122,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/al/x86_64/standard/5.0/Dockerfile b/al/x86_64/standard/5.0/Dockerfile index 9ceae092..44b28e71 100644 --- a/al/x86_64/standard/5.0/Dockerfile +++ b/al/x86_64/standard/5.0/Dockerfile @@ -465,7 +465,7 @@ RUN phpenv update \ #**************** GOLANG **************************************************** #goenv -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOLANG_26_VERSION="1.26.0" \ diff --git a/al/x86_64/standard/6.0/Dockerfile b/al/x86_64/standard/6.0/Dockerfile index e59c2911..aa626a83 100644 --- a/al/x86_64/standard/6.0/Dockerfile +++ b/al/x86_64/standard/6.0/Dockerfile @@ -468,7 +468,7 @@ RUN phpenv update \ #**************** GOLANG **************************************************** #goenv -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOLANG_26_VERSION="1.26.0" \ diff --git a/ubuntu/standard/5.0/Dockerfile b/ubuntu/standard/5.0/Dockerfile index 78265812..101424c7 100644 --- a/ubuntu/standard/5.0/Dockerfile +++ b/ubuntu/standard/5.0/Dockerfile @@ -171,7 +171,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/ubuntu/standard/6.0/Dockerfile b/ubuntu/standard/6.0/Dockerfile index b9508138..e84e1f10 100644 --- a/ubuntu/standard/6.0/Dockerfile +++ b/ubuntu/standard/6.0/Dockerfile @@ -142,7 +142,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/ubuntu/standard/7.0/Dockerfile b/ubuntu/standard/7.0/Dockerfile index 7c746d9a..ee2995b1 100644 --- a/ubuntu/standard/7.0/Dockerfile +++ b/ubuntu/standard/7.0/Dockerfile @@ -446,7 +446,7 @@ RUN phpenv update \ #**************** GOLANG **************************************************** #goenv -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOLANG_26_VERSION="1.26.0" \ diff --git a/ubuntu/standard/8.0/Dockerfile b/ubuntu/standard/8.0/Dockerfile index 41437837..73b90373 100644 --- a/ubuntu/standard/8.0/Dockerfile +++ b/ubuntu/standard/8.0/Dockerfile @@ -444,7 +444,7 @@ RUN phpenv update \ #**************** GOLANG **************************************************** #goenv -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOLANG_26_VERSION="1.26.0" \ diff --git a/unsupported_images/al2/x86_64/standard/1.0/Dockerfile b/unsupported_images/al2/x86_64/standard/1.0/Dockerfile index 7fc7da90..efb20e07 100644 --- a/unsupported_images/al2/x86_64/standard/1.0/Dockerfile +++ b/unsupported_images/al2/x86_64/standard/1.0/Dockerfile @@ -153,7 +153,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/al2/x86_64/standard/2.0/Dockerfile b/unsupported_images/al2/x86_64/standard/2.0/Dockerfile index d788b461..bf89bd53 100644 --- a/unsupported_images/al2/x86_64/standard/2.0/Dockerfile +++ b/unsupported_images/al2/x86_64/standard/2.0/Dockerfile @@ -151,7 +151,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/al2/x86_64/standard/3.0/Dockerfile b/unsupported_images/al2/x86_64/standard/3.0/Dockerfile index 9abf87a2..8d238162 100644 --- a/unsupported_images/al2/x86_64/standard/3.0/Dockerfile +++ b/unsupported_images/al2/x86_64/standard/3.0/Dockerfile @@ -154,7 +154,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" ##go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/ubuntu/standard/1.0/Dockerfile b/unsupported_images/ubuntu/standard/1.0/Dockerfile index 0164d620..6cb73bac 100644 --- a/unsupported_images/ubuntu/standard/1.0/Dockerfile +++ b/unsupported_images/ubuntu/standard/1.0/Dockerfile @@ -164,7 +164,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/ubuntu/standard/2.0/Dockerfile b/unsupported_images/ubuntu/standard/2.0/Dockerfile index 6a976051..86a45cbc 100644 --- a/unsupported_images/ubuntu/standard/2.0/Dockerfile +++ b/unsupported_images/ubuntu/standard/2.0/Dockerfile @@ -164,7 +164,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/ubuntu/standard/3.0/Dockerfile b/unsupported_images/ubuntu/standard/3.0/Dockerfile index b0998216..68e6484e 100644 --- a/unsupported_images/ubuntu/standard/3.0/Dockerfile +++ b/unsupported_images/ubuntu/standard/3.0/Dockerfile @@ -164,7 +164,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go" diff --git a/unsupported_images/ubuntu/standard/4.0/Dockerfile b/unsupported_images/ubuntu/standard/4.0/Dockerfile index 55a81130..66d9b7f9 100644 --- a/unsupported_images/ubuntu/standard/4.0/Dockerfile +++ b/unsupported_images/ubuntu/standard/4.0/Dockerfile @@ -164,7 +164,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH" #go -RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv +RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH" ENV GOENV_DISABLE_GOPATH=1 ENV GOPATH="/go"