We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10357cb commit 66757b0Copy full SHA for 66757b0
opensuse-42.1/Dockerfile
@@ -7,16 +7,17 @@ RUN zypper addrepo -Gf http://download.opensuse.org/repositories/systemsmanageme
7
8
# Upgrade.
9
RUN zypper update -y
10
-#
+
11
# Install the requires package and python.
12
-RUN zypper install -y \
+RUN zypper -n install \
13
kernel-devel gcc python python-pip python-devel \
14
libffi-devel-gcc5 libopenssl-devel libzmq5 \
15
&& \
16
zypper clean -a
17
18
# Install the Ansible 2.0+
19
-RUN zypper install -y ansible-2.2.0.0-56.1
+RUN zypper -n install ansible && \
20
+ zypper clean -a
21
22
# for disable localhost warning message.
23
RUN /bin/echo -e "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts
0 commit comments