Skip to content

Commit 34bde65

Browse files
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
1 parent 1590e48 commit 34bde65

17 files changed

Lines changed: 17 additions & 17 deletions

File tree

al/aarch64/standard/2.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
119119
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
120120

121121
##go
122-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
122+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
123123
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
124124
ENV GOENV_DISABLE_GOPATH=1
125125
ENV GOPATH="/go"

al/aarch64/standard/3.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
157157
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
158158

159159
##go
160-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
160+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
161161
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
162162
ENV GOENV_DISABLE_GOPATH=1
163163
ENV GOPATH="/go"

al/aarch64/standard/4.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
156156
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
157157

158158
##go
159-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
159+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
160160
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
161161
ENV GOENV_DISABLE_GOPATH=1
162162
ENV GOPATH="/go"

al/x86_64/standard/4.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
122122
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
123123

124124
##go
125-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
125+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
126126
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
127127
ENV GOENV_DISABLE_GOPATH=1
128128
ENV GOPATH="/go"

al/x86_64/standard/5.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ RUN phpenv update \
465465
#**************** GOLANG ****************************************************
466466

467467
#goenv
468-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
468+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
469469
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
470470

471471
ENV GOLANG_26_VERSION="1.26.0" \

al/x86_64/standard/6.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ RUN phpenv update \
468468
#**************** GOLANG ****************************************************
469469

470470
#goenv
471-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
471+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
472472
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
473473

474474
ENV GOLANG_26_VERSION="1.26.0" \

ubuntu/standard/5.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
171171
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
172172

173173
#go
174-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
174+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
175175
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
176176
ENV GOENV_DISABLE_GOPATH=1
177177
ENV GOPATH="/go"

ubuntu/standard/6.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin
142142
ENV PATH="/root/.phpenv/shims:/root/.phpenv/bin:$PATH"
143143

144144
#go
145-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
145+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
146146
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
147147
ENV GOENV_DISABLE_GOPATH=1
148148
ENV GOPATH="/go"

ubuntu/standard/7.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ RUN phpenv update \
446446
#**************** GOLANG ****************************************************
447447

448448
#goenv
449-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
449+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
450450
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
451451

452452
ENV GOLANG_26_VERSION="1.26.0" \

ubuntu/standard/8.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ RUN phpenv update \
444444
#**************** GOLANG ****************************************************
445445

446446
#goenv
447-
RUN git clone https://github.com/syndbg/goenv.git $HOME/.goenv
447+
RUN git clone -b master https://github.com/go-nv/goenv.git $HOME/.goenv
448448
ENV PATH="/root/.goenv/shims:/root/.goenv/bin:/go/bin:$PATH"
449449

450450
ENV GOLANG_26_VERSION="1.26.0" \

0 commit comments

Comments
 (0)