From f6093384dc157362bf705199489930537a2bf57a Mon Sep 17 00:00:00 2001 From: Jason Montleon Date: Thu, 16 Jun 2022 16:00:32 -0400 Subject: [PATCH] Update CentOS repo URL in Dockerfile (#11) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb1ddc3..9df7e28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest -RUN echo -ne "[centos-8-baseos]\nname = CentOS 8 (RPMs) - BaseOS\nbaseurl = http://mirror.centos.org/centos-8/8/BaseOS/x86_64/os/\nenabled = 1\ngpgcheck = 0" > /etc/yum.repos.d/centos.repo +RUN echo -ne "[centos-8-baseos]\nname = CentOS 8 (RPMs) - BaseOS\nbaseurl = http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/\nenabled = 1\ngpgcheck = 0" > /etc/yum.repos.d/centos.repo RUN microdnf -y install openssh-server stunnel rsync nmap && microdnf clean all COPY sshd_config /etc/ssh/sshd_config COPY stunnel.conf /etc/stunnel/stunnel.conf