Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Bugfix BCDevOps#10 Remove mirror specificity of epel package source
Browse files Browse the repository at this point in the history
There is no need to target a specific mirror to acquire the epel release.
We can instead target the default general release instead and achieve the
same end result.

Signed-off-by: Jeremy Ho <jujaga@gmail.com>
  • Loading branch information
jujaga committed Apr 21, 2022
1 parent 6a0ac87 commit 5883a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN set -x && \
certbot --help paths

RUN set -x && \
yum install -y https://mirror.csclub.uwaterloo.ca/fedora/epel/epel-release-latest-7.noarch.rpm && \
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \
yum install '--disablerepo=*' '--enablerepo=epel' -y jq && \
curl -sfL https://github.com/openshift/origin/releases/download/v3.11.0/openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz -o /tmp/openshift-origin-client-tools.tar.gz && \
tar -xzvf /tmp/openshift-origin-client-tools.tar.gz -C /usr/local/bin --strip-components=1 openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit/oc && \
Expand Down

0 comments on commit 5883a93

Please sign in to comment.