diff options
-rw-r--r-- | centos6-onbuild/Dockerfile | 3 | ||||
-rw-r--r-- | centos7-onbuild/Dockerfile | 3 | ||||
-rw-r--r-- | debian7-onbuild/Dockerfile | 3 | ||||
-rw-r--r-- | debian8-onbuild/Dockerfile | 3 | ||||
-rw-r--r-- | ubuntu12.04-onbuild/Dockerfile | 3 | ||||
-rw-r--r-- | ubuntu14.04-onbuild/Dockerfile | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/centos6-onbuild/Dockerfile b/centos6-onbuild/Dockerfile index cb96493..85f1e18 100644 --- a/centos6-onbuild/Dockerfile +++ b/centos6-onbuild/Dockerfile | |||
@@ -43,6 +43,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
43 | 43 | ||
44 | ONBUILD WORKDIR /tmp | 44 | ONBUILD WORKDIR /tmp |
45 | ONBUILD COPY . /tmp | 45 | ONBUILD COPY . /tmp |
46 | ONBUILD RUN \ | ||
47 | echo "===> Diagnosis: host information..." && \ | ||
48 | ansible -c local -m setup all | ||
46 | 49 | ||
47 | 50 | ||
48 | 51 | ||
diff --git a/centos7-onbuild/Dockerfile b/centos7-onbuild/Dockerfile index d668cba..64233d8 100644 --- a/centos7-onbuild/Dockerfile +++ b/centos7-onbuild/Dockerfile | |||
@@ -43,6 +43,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
43 | 43 | ||
44 | ONBUILD WORKDIR /tmp | 44 | ONBUILD WORKDIR /tmp |
45 | ONBUILD COPY . /tmp | 45 | ONBUILD COPY . /tmp |
46 | ONBUILD RUN \ | ||
47 | echo "===> Diagnosis: host information..." && \ | ||
48 | ansible -c local -m setup all | ||
46 | 49 | ||
47 | 50 | ||
48 | 51 | ||
diff --git a/debian7-onbuild/Dockerfile b/debian7-onbuild/Dockerfile index 1620990..45bbd7f 100644 --- a/debian7-onbuild/Dockerfile +++ b/debian7-onbuild/Dockerfile | |||
@@ -40,6 +40,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update |
41 | ONBUILD WORKDIR /tmp | 41 | ONBUILD WORKDIR /tmp |
42 | ONBUILD COPY . /tmp | 42 | ONBUILD COPY . /tmp |
43 | ONBUILD RUN \ | ||
44 | echo "===> Diagnosis: host information..." && \ | ||
45 | ansible -c local -m setup all | ||
43 | 46 | ||
44 | 47 | ||
45 | 48 | ||
diff --git a/debian8-onbuild/Dockerfile b/debian8-onbuild/Dockerfile index 04eadb5..5db6cdf 100644 --- a/debian8-onbuild/Dockerfile +++ b/debian8-onbuild/Dockerfile | |||
@@ -40,6 +40,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update |
41 | ONBUILD WORKDIR /tmp | 41 | ONBUILD WORKDIR /tmp |
42 | ONBUILD COPY . /tmp | 42 | ONBUILD COPY . /tmp |
43 | ONBUILD RUN \ | ||
44 | echo "===> Diagnosis: host information..." && \ | ||
45 | ansible -c local -m setup all | ||
43 | 46 | ||
44 | 47 | ||
45 | 48 | ||
diff --git a/ubuntu12.04-onbuild/Dockerfile b/ubuntu12.04-onbuild/Dockerfile index f7a5aa0..2fc7820 100644 --- a/ubuntu12.04-onbuild/Dockerfile +++ b/ubuntu12.04-onbuild/Dockerfile | |||
@@ -36,6 +36,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update |
37 | ONBUILD WORKDIR /tmp | 37 | ONBUILD WORKDIR /tmp |
38 | ONBUILD COPY . /tmp | 38 | ONBUILD COPY . /tmp |
39 | ONBUILD RUN \ | ||
40 | echo "===> Diagnosis: host information..." && \ | ||
41 | ansible -c local -m setup all | ||
39 | 42 | ||
40 | 43 | ||
41 | 44 | ||
diff --git a/ubuntu14.04-onbuild/Dockerfile b/ubuntu14.04-onbuild/Dockerfile index c0e400f..a0e6580 100644 --- a/ubuntu14.04-onbuild/Dockerfile +++ b/ubuntu14.04-onbuild/Dockerfile | |||
@@ -36,6 +36,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/ | |||
36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update |
37 | ONBUILD WORKDIR /tmp | 37 | ONBUILD WORKDIR /tmp |
38 | ONBUILD COPY . /tmp | 38 | ONBUILD COPY . /tmp |
39 | ONBUILD RUN \ | ||
40 | echo "===> Diagnosis: host information..." && \ | ||
41 | ansible -c local -m setup all | ||
39 | 42 | ||
40 | 43 | ||
41 | 44 | ||