From 1f8ad980980abf09802e78bd8313caeed32e1652 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Tue, 22 Nov 2022 15:31:39 +0000 Subject: [PATCH] fix bug --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fcfcd4e..a756f7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ -FROM rockylinux:8.6 -#FROM --platform=$TARGETPLATFORM rockylinux:8.6 +FROM --platform=$TARGETPLATFORM rockylinux:8.6 # Define args and set a default value ARG maintainer=tier @@ -25,7 +24,7 @@ RUN rm -fr /var/cache/yum/* && yum clean all && yum -y install --setopt=tsflags= #install shibboleth, cleanup httpd COPY container_files/shibboleth/shibboleth.repo /etc/yum.repos.d/security:shibboleth.repo -RUN yum -y install shibboleth.x86_64 \ +RUN yum -y install shibboleth \ && yum clean all \ && rm /etc/httpd/conf.d/autoindex.conf \ && rm /etc/httpd/conf.d/userdir.conf \