From a035d9f5e87156aa3219cf14b4d5c1934fc4c7a4 Mon Sep 17 00:00:00 2001 From: James Adams Date: Fri, 6 Dec 2024 10:32:03 +0000 Subject: [PATCH] Dockerfile: "master" branches are now called "main" --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f18fa0dd4..7bb35ffd68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,11 @@ FROM rockylinux:8 WORKDIR /quattor # install library core in /quattor, tests need it -ADD https://codeload.github.com/quattor/template-library-core/tar.gz/master template-library-core-master.tar.gz -RUN tar -xzf template-library-core-master.tar.gz +ADD https://codeload.github.com/quattor/template-library-core/tar.gz/main template-library-core-main.tar.gz +RUN tar -xzf template-library-core-main.tar.gz # point library core to where we downloaded it -ENV QUATTOR_TEST_TEMPLATE_LIBRARY_CORE /quattor/template-library-core-master +ENV QUATTOR_TEST_TEMPLATE_LIBRARY_CORE /quattor/template-library-core-main # Prepare to install dependencies RUN dnf -y install dnf-plugins-core && \