We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbd973b commit a93ccfaCopy full SHA for a93ccfa
1 file changed
.github/docker-images/ubuntu-18-x64/Dockerfile
@@ -46,10 +46,11 @@ RUN cd /tmp \
46
&& ln -sf /usr/local/bin/python3.10 /usr/bin/python3 \
47
&& /usr/local/bin/python3.10 --version
48
49
-# Add Go PPA and install
50
-RUN add-apt-repository -y ppa:longsleep/golang-backports \
51
- && apt-get update \
52
- && apt-get -y install golang-go \
+# Install Go from default Ubuntu repository
+RUN apt-get update \
+ && apt-get -y install \
+ software-properties-common \
53
+ golang-go \
54
&& apt-get clean \
55
&& rm -rf /var/lib/apt/lists/*
56
0 commit comments