mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-01-12 06:24:14 +00:00
12 lines
303 B
Docker
12 lines
303 B
Docker
FROM centos:6
|
|
|
|
# This is needed so that ansible managed to read "ansible_default_ipv4"
|
|
# This step is needed since standard CentOS docker image does not come with EPEL installed by default
|
|
RUN yum install iproute epel-release -y
|
|
|
|
# we can has SSH
|
|
EXPOSE 22
|
|
|
|
# pepare for takeoff
|
|
CMD ["/usr/sbin/init"]
|