Renamed the go binary such that it is not used by default

This commit is contained in:
Alvin Moore 2020-07-31 02:18:57 -07:00
parent 6a00836437
commit 4242008d06
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ RUN cd / &&\
# Download and install gcc-9.3.0
RUN cd / &&\
curl -L $FDB_ARTIFACTSURL/downloads/docker/foundationdb-dev/gcc-9.3.0.tar.gz | tar -xvz
curl -L $FDB_ARTIFACTSURL/downloads/docker/foundationdb-dev/gcc-9.3.0.tar.gz | tar -xvz &&\
mv -iv /usr/local/bin/go /usr/local/bin/go.gcc93 &&\
mv -iv /usr/local/bin/gofmt /usr/local/bin/gofmt.gcc93
# Download and install distcc 3.3.2 new centos binaries
RUN cd / &&\