summaryrefslogtreecommitdiffstats
path: root/k8s-bootstrap-container/Dockerfile-template
diff options
context:
space:
mode:
authorJack Lucas <jflucas@research.att.com>2020-01-10 14:14:33 -0500
committerJack Lucas <jflucas@research.att.com>2020-01-10 14:14:33 -0500
commita73e3e7f103e1637b2b697195d7688a3b4381ce4 (patch)
tree7ef653579be06aa3d08850c86a8d12a47fe2e61d /k8s-bootstrap-container/Dockerfile-template
parent87182470e239ec929d033ae48c30fb3c10fcea85 (diff)
Update plugin versions1.7.0
Also improve error detection during curl downloads Issue-ID: DCAEGEN2-2018 Signed-off-by: Jack Lucas <jflucas@research.att.com> Change-Id: I583a0366e9d20afe1d2a038b9b96331e7cad6804
Diffstat (limited to 'k8s-bootstrap-container/Dockerfile-template')
-rw-r--r--k8s-bootstrap-container/Dockerfile-template4
1 files changed, 2 insertions, 2 deletions
diff --git a/k8s-bootstrap-container/Dockerfile-template b/k8s-bootstrap-container/Dockerfile-template
index 358f59b..583de52 100644
--- a/k8s-bootstrap-container/Dockerfile-template
+++ b/k8s-bootstrap-container/Dockerfile-template
@@ -32,13 +32,13 @@ RUN yum install -y unzip \
&& mkdir -p /opt/consul/bin \
&& mkdir -p /opt/consul/data \
&& mkdir -p /opt/consul/config \
- && curl -Ss https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip > /tmp/consul.zip \
+ && curl -Ssf https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip > /tmp/consul.zip \
&& unzip -pj /tmp/consul.zip > /opt/consul/bin/consul \
&& chmod +x /opt/consul/bin/consul
COPY 00-consul.json /opt/consul/config/
# Install jq
-RUN curl -Ss -L "https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64" > /bin/jq \
+RUN curl -Ssf -L "https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64" > /bin/jq \
&& chmod +x /bin/jq
# Install pip and Cloudify CLI (stay at version 4.2 because of changes in higher versions)