yum -y flag for epel release in dockerfile.

This commit is contained in:
jsaliba 2017-09-14 10:59:59 +02:00
parent 986678b733
commit 2e6cd41cb1
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM centos:7
RUN yum install iproute -y RUN yum install iproute -y
# This step is needed since standard CentOS docker image does not come with EPEL installed by default # This step is needed since standard CentOS docker image does not come with EPEL installed by default
RUN yum install epel-release RUN yum install epel-release -y
# we can has SSH # we can has SSH
EXPOSE 22 EXPOSE 22