Skip to content
Snippets Groups Projects
Commit c8c39bab authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added vault repo for CentOS 7 Docker image.

parent 6f55e3f4
No related merge requests found
Pipeline #24565 failed
......@@ -7,6 +7,13 @@
# Use CentOS 7 as base image
FROM centos:7
# Copy the repository file to the container
COPY vault.repo /root/vault.repo
# Update the system and install basic utilities
RUN rm -f /etc/yum.repos.d/* && \
cp /root/vault.repo /etc/yum.repos.d/
# Install epel repo
RUN yum update -y && yum -y install epel-release
......
[Vault-base]
name=Vault - CentOS-$releasever Base
baseurl=http://vault.centos.org/centos/$releasever/os/$basearch/
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-$releasever
[Vault-updates]
name=Vault - CentOS-$releasever Updates
baseurl=http://vault.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-$releasever
[Vault-extras]
name=Vault - CentOS-$releasever Extras
baseurl=http://vault.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-$releasever
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment