Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN INSTALL_PKGS=" \
which tar wget hostname sysvinit-tools util-linux \
socat tree findutils lsof bind-utils shadow-utils \
" && \
echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
yum install -y ${INSTALL_PKGS} && \
rpm -V ${INSTALL_PKGS} && \
yum clean all && \
mkdir -p /var/lib/origin

Expand Down
2 changes: 1 addition & 1 deletion base/Dockerfile.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN INSTALL_PKGS=" \
which tar wget hostname sysvinit-tools util-linux \
socat tree findutils lsof bind-utils shadow-utils \
" && \
echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
yum install -y ${INSTALL_PKGS} && \
rpm -V ${INSTALL_PKGS} && \
yum clean all && \
mkdir -p /var/lib/origin

Expand Down
1 change: 1 addition & 0 deletions base/Dockerfile.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RUN INSTALL_PKGS=" \
procps-ng rsync \
" && \
if [ ! -e /usr/bin/yum ]; then ln -s /usr/bin/microdnf /usr/bin/yum; fi && \
echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
yum clean all && rm -rf /var/cache/*
LABEL io.k8s.display-name="OpenShift Base" \
Expand Down
2 changes: 1 addition & 1 deletion base/Dockerfile.rhel7
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN INSTALL_PKGS=" \
which tar wget hostname sysvinit-tools util-linux \
socat tree findutils lsof bind-utils shadow-utils \
" && \
echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
yum --disablerepo=origin-local-release install -y $INSTALL_PKGS && \
rpm -V $INSTALL_PKGS && \
yum clean all && \
mkdir -p /var/lib/origin

Expand Down