Skip to content

Commit

Permalink
squid: Update centos8 base image
Browse files Browse the repository at this point in the history
yum in registry.centos.org/centos/centos:centos8 is non-functional, this
switches to quay.io/centos/centos:stream8 as our other container images.
  • Loading branch information
cfergeau authored and praveenkumar committed May 17, 2022
1 parent 6dd8992 commit 1fb2fbc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions images/squid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# (commonName must be set to 192.168.122.1 before running generate-certs.sh and building the container image)

# Intermediate build image to generate the CA and certificate used for https
FROM registry.centos.org/centos/centos:centos8 AS gencerts
FROM quay.io/centos/centos:stream8 AS gencerts
MAINTAINER CRC <devtools-cdk@redhat.com>

RUN yum -y install openssl
Expand All @@ -41,7 +41,8 @@ RUN bash ./generate-certs.sh


# Final squid container
FROM registry.centos.org/centos/centos:centos8
FROM quay.io/centos/centos:stream8

MAINTAINER CRC <devtools-cdk@redhat.com>

RUN yum -y install squid && \
Expand Down

0 comments on commit 1fb2fbc

Please sign in to comment.