From f6f9654ea20e0eebdfc6afb33fe3112c9594e3e3 Mon Sep 17 00:00:00 2001 From: Sky Brewer Date: Tue, 18 Nov 2025 14:25:58 +0100 Subject: [PATCH 1/2] Update download link to epics-controls --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 3aa7c419..ddca4699 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -4,7 +4,7 @@ SHELL ["/bin/bash", "-c"] RUN apt-get update && apt-get install -yq wget git WORKDIR /var/cache ARG EPICSVERSION=7.0.8.1 -RUN wget -q --show-progress https://epics.anl.gov/download/base/base-$EPICSVERSION.tar.gz \ +RUN wget -q --show-progress https://epics-controls.org/download/base/base-$EPICSVERSION.tar.gz \ && mkdir /epics/ \ && tar -xf base-$EPICSVERSION.tar.gz -C /epics \ && rm base-$EPICSVERSION.tar.gz From 36761b6bd4234467816253f92ed24c37ac8da6e6 Mon Sep 17 00:00:00 2001 From: Sky Brewer Date: Tue, 18 Nov 2025 14:26:15 +0100 Subject: [PATCH 2/2] Update epics version --- client/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index ddca4699..5baf8c9e 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$BUILDPLATFORM debian:bookworm-slim AS epics-download-extract SHELL ["/bin/bash", "-c"] RUN apt-get update && apt-get install -yq wget git WORKDIR /var/cache -ARG EPICSVERSION=7.0.8.1 +ARG EPICSVERSION=7.0.9 RUN wget -q --show-progress https://epics-controls.org/download/base/base-$EPICSVERSION.tar.gz \ && mkdir /epics/ \ && tar -xf base-$EPICSVERSION.tar.gz -C /epics \ @@ -38,7 +38,7 @@ RUN apt-get update \ WORKDIR /epics COPY --from=epics-download-extract /epics /epics -ARG EPICSVERSION=7.0.8.1 +ARG EPICSVERSION=7.0.9 RUN mv base-$EPICSVERSION base RUN cd base && make -j$(nproc)