From 59d78439e270ad7741d30cf26a1269eb1945a099 Mon Sep 17 00:00:00 2001 From: Ondra Machacek Date: Tue, 8 Oct 2024 14:42:03 +0200 Subject: [PATCH] Follow link on github downloads Signed-off-by: Ondra Machacek --- Containerfile.api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile.api b/Containerfile.api index fd0b0b1..f286f47 100644 --- a/Containerfile.api +++ b/Containerfile.api @@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi9/go-toolset as builder WORKDIR /app -RUN curl -o /app/rhcos-live.x86_64.iso https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/latest/rhcos-live.x86_64.iso +RUN curl -Lo /app/rhcos-live.x86_64.iso https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/latest/rhcos-live.x86_64.iso COPY go.mod go.sum ./ RUN go mod download