Added initscripts to dockerfile

This commit is contained in:
jsaliba 2017-09-14 13:14:50 +02:00
parent 61ccb2f46b
commit 6d529d5238
1 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,10 @@ RUN yum install iproute -y
# This step is needed since standard CentOS docker image does not come with EPEL installed by default
RUN yum install epel-release -y
# This step is needed since standard CentOS docker image does not come with init-functions installed by default.
# This package seems to be required for Mongo 3.2 and downwards
RUN yum install initscripts -y
# we can has SSH
EXPOSE 22