Browse Source

Change centos7 to use the vault repo

update-pebble-docker-repo
Tim Kimber 1 year ago
parent
commit
523b95e3b8
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      test/Dockerfile-centos7

+ 5
- 0
test/Dockerfile-centos7 View File

@ -1,5 +1,10 @@
FROM centos:centos7
# Centos 7 is EOL and is no longer available from the usual mirrors, so switch to https://vault.centos.org
RUN sed -i 's/enabled=1/enabled=0/g' /etc/yum/pluginconf.d/fastestmirror.conf && \
sed -i 's/^mirrorlist/#mirrorlist/g' /etc/yum.repos.d/*.repo && \
sed -i 's;^#baseurl=http://mirror;baseurl=https://vault;g' /etc/yum.repos.d/*.repo
# Update and install required software
RUN yum -y update
RUN yum -y install epel-release


Loading…
Cancel
Save