You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build/ubuntu/Dockerfile
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ ARG apt_mirror
8
8
ENV apt_mirror=${apt_mirror}
9
9
RUN [ -n "$apt_mirror" ] && sed -i -e "s|ports.ubuntu.com|$apt_mirror|" /etc/apt/sources.list || true
10
10
11
-
# Deal with Ubuntu 21.10 repos moving to old-releases (ppc64le only)
12
-
RUN if echo "$from" | grep -q ".*ubuntu:21.10"; then sed -i -e "s|ports.ubuntu.com/ubuntu-ports|old-releases.ubuntu.com/ubuntu|" /etc/apt/sources.list; fi
11
+
# Deal with Ubuntu 21/22.10 repos moving to old-releases (ppc64le only)
12
+
RUN if echo "$from" | grep -q ".*ubuntu:2[12]\.10"; then sed -i -e "s|ports.ubuntu.com/ubuntu-ports|old-releases.ubuntu.com/ubuntu|" /etc/apt/sources.list; fi
13
13
14
14
RUN apt-get -q -y update && \
15
15
DEBIAN_FRONTEND=noninteractive \
@@ -52,11 +52,7 @@ RUN apt-get -q -y update && \
52
52
COPY ubuntu/make-links.sh /tmp/make-links.sh
53
53
RUN /tmp/make-links.sh ${compiler_version} && rm /tmp/make-links.sh
0 commit comments