From 714045e2d81898dd73dbc7c3ad13dcb5793523f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= Date: Fri, 19 Apr 2024 07:40:39 +0200 Subject: [PATCH] docker: update aws url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc Poulhiès --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index dafa9e5..3afb0e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,10 +56,11 @@ RUN apt-get update -y -q && apt-get upgrade -y -q && apt-get upgrade -y -q && \ rm -rf aws* && \ mkdir -p /opt/compiler-explorer/ && \ cd /opt/compiler-explorer && \ - curl "https://compiler-explorer.s3.amazonaws.com/opt/gcc-11.4.0.tar.xz" -o gcc11.tar.xz && \ - curl "https://compiler-explorer.s3.amazonaws.com/opt/gcc-12.3.0.tar.xz" -o gcc12.tar.xz && \ - curl "https://compiler-explorer.s3.amazonaws.com/opt/gcc-13.2.0.tar.xz" -o gcc13.tar.xz && \ - curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-trunk-20240122.tar.xz" -o "gcc-snapshot.tar.xz" && \ + curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-trunk-20240419.tar.xz" -o "gcc-snapshot.tar.xz" && \ + curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-11.4.0.tar.xz" -o gcc11.tar.xz && \ + curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-12.3.0.tar.xz" -o gcc12.tar.xz && \ + curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-13.2.0.tar.xz" -o gcc13.tar.xz && \ + curl "https://s3.amazonaws.com/compiler-explorer/opt/gcc-trunk-20240419.tar.xz" -o "gcc-snapshot.tar.xz" && \ tar Jxf gcc11.tar.xz && \ tar Jxf gcc12.tar.xz && \ tar Jxf gcc13.tar.xz && \