diff options
-rw-r--r-- | debian7-onbuild/Dockerfile | 7 | ||||
-rw-r--r-- | debian8-onbuild/Dockerfile | 7 | ||||
-rw-r--r-- | ubuntu12.04-onbuild/Dockerfile | 7 | ||||
-rw-r--r-- | ubuntu14.04-onbuild/Dockerfile | 7 |
4 files changed, 20 insertions, 8 deletions
diff --git a/debian7-onbuild/Dockerfile b/debian7-onbuild/Dockerfile index 45bbd7f..44ed637 100644 --- a/debian7-onbuild/Dockerfile +++ b/debian7-onbuild/Dockerfile | |||
@@ -37,8 +37,11 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ | |||
37 | 37 | ||
38 | COPY ansible-playbook-wrapper /usr/local/bin/ | 38 | COPY ansible-playbook-wrapper /usr/local/bin/ |
39 | 39 | ||
40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ |
41 | ONBUILD WORKDIR /tmp | 41 | echo "===> Updating TLS certificates..." && \ |
42 | apt-get install -y openssl ca-certificates | ||
43 | |||
44 | ONBUILD WORKDIR /tmp | ||
42 | ONBUILD COPY . /tmp | 45 | ONBUILD COPY . /tmp |
43 | ONBUILD RUN \ | 46 | ONBUILD RUN \ |
44 | echo "===> Diagnosis: host information..." && \ | 47 | echo "===> Diagnosis: host information..." && \ |
diff --git a/debian8-onbuild/Dockerfile b/debian8-onbuild/Dockerfile index 5db6cdf..65794be 100644 --- a/debian8-onbuild/Dockerfile +++ b/debian8-onbuild/Dockerfile | |||
@@ -37,8 +37,11 @@ RUN echo "===> Installing python, sudo, and supporting tools..." && \ | |||
37 | 37 | ||
38 | COPY ansible-playbook-wrapper /usr/local/bin/ | 38 | COPY ansible-playbook-wrapper /usr/local/bin/ |
39 | 39 | ||
40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ |
41 | ONBUILD WORKDIR /tmp | 41 | echo "===> Updating TLS certificates..." && \ |
42 | apt-get install -y openssl ca-certificates | ||
43 | |||
44 | ONBUILD WORKDIR /tmp | ||
42 | ONBUILD COPY . /tmp | 45 | ONBUILD COPY . /tmp |
43 | ONBUILD RUN \ | 46 | ONBUILD RUN \ |
44 | echo "===> Diagnosis: host information..." && \ | 47 | echo "===> Diagnosis: host information..." && \ |
diff --git a/ubuntu12.04-onbuild/Dockerfile b/ubuntu12.04-onbuild/Dockerfile index 2fc7820..20ab8a1 100644 --- a/ubuntu12.04-onbuild/Dockerfile +++ b/ubuntu12.04-onbuild/Dockerfile | |||
@@ -33,8 +33,11 @@ RUN echo "===> Adding Ansible's PPA..." && \ | |||
33 | 33 | ||
34 | COPY ansible-playbook-wrapper /usr/local/bin/ | 34 | COPY ansible-playbook-wrapper /usr/local/bin/ |
35 | 35 | ||
36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ |
37 | ONBUILD WORKDIR /tmp | 37 | echo "===> Updating TLS certificates..." && \ |
38 | apt-get install -y openssl ca-certificates | ||
39 | |||
40 | ONBUILD WORKDIR /tmp | ||
38 | ONBUILD COPY . /tmp | 41 | ONBUILD COPY . /tmp |
39 | ONBUILD RUN \ | 42 | ONBUILD RUN \ |
40 | echo "===> Diagnosis: host information..." && \ | 43 | echo "===> Diagnosis: host information..." && \ |
diff --git a/ubuntu14.04-onbuild/Dockerfile b/ubuntu14.04-onbuild/Dockerfile index a0e6580..64dd859 100644 --- a/ubuntu14.04-onbuild/Dockerfile +++ b/ubuntu14.04-onbuild/Dockerfile | |||
@@ -33,8 +33,11 @@ RUN echo "===> Adding Ansible's PPA..." && \ | |||
33 | 33 | ||
34 | COPY ansible-playbook-wrapper /usr/local/bin/ | 34 | COPY ansible-playbook-wrapper /usr/local/bin/ |
35 | 35 | ||
36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update | 36 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ |
37 | ONBUILD WORKDIR /tmp | 37 | echo "===> Updating TLS certificates..." && \ |
38 | apt-get install -y openssl ca-certificates | ||
39 | |||
40 | ONBUILD WORKDIR /tmp | ||
38 | ONBUILD COPY . /tmp | 41 | ONBUILD COPY . /tmp |
39 | ONBUILD RUN \ | 42 | ONBUILD RUN \ |
40 | echo "===> Diagnosis: host information..." && \ | 43 | echo "===> Diagnosis: host information..." && \ |