From 47d28a19b68b1ba642b597d1a9fadc1354cb7dac Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Mon, 26 Apr 2021 10:11:58 -0700 Subject: [PATCH] Switch to CentOS 8 repo to use ARM64 package --- .github/workflows/edge.yml | 2 +- build/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml index c61671bb02..7e929d8d8c 100644 --- a/.github/workflows/edge.yml +++ b/.github/workflows/edge.yml @@ -467,7 +467,7 @@ jobs: image: nginx-ingress tag: edge-ubi type: openshift - platforms: linux/arm64,linux/amd64,linux/ppc64le,linux/s390x + platforms: linux/arm64,linux/amd64 steps: - name: Checkout Repository uses: actions/checkout@v2 diff --git a/build/Dockerfile b/build/Dockerfile index b605bea58c..60210e5f6b 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -146,7 +146,7 @@ LABEL image-version=ubi-nginx-$NGINX_VERSION-$IC_VERSION RUN echo "[nginx]" >> /etc/yum.repos.d/nginx.repo \ && echo "name=nginx repo" >> /etc/yum.repos.d/nginx.repo \ - && echo "baseurl=https://nginx.org/packages/mainline/rhel/8/\$basearch/" >> /etc/yum.repos.d/nginx.repo \ + && echo "baseurl=https://nginx.org/packages/mainline/centos/8/\$basearch/" >> /etc/yum.repos.d/nginx.repo \ && echo "gpgcheck=0" >> /etc/yum.repos.d/nginx.repo \ && echo "enabled=1" >> /etc/yum.repos.d/nginx.repo \ && echo "module_hotfixes=true" >> /etc/yum.repos.d/nginx.repo \