diff --git a/grafana/rootfs/Dockerfile b/grafana/rootfs/Dockerfile index 2b8d050..53c314c 100644 --- a/grafana/rootfs/Dockerfile +++ b/grafana/rootfs/Dockerfile @@ -4,9 +4,9 @@ COPY . / RUN apt-get update && \ apt-get install -y libfontconfig && \ - curl -sL -o /usr/share/grafana/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 && \ + curl -fsSL -o /usr/share/grafana/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 && \ chmod +x /usr/share/grafana/envtpl && \ - curl -so /tmp/grafana.deb https://grafanarel.s3.amazonaws.com/builds/grafana_3.1.0-1468321182_amd64.deb && \ + curl -fsSo /tmp/grafana.deb https://grafanarel.s3.amazonaws.com/builds/grafana_3.1.0-1468321182_amd64.deb && \ dpkg -i /tmp/grafana.deb && \ rm /tmp/grafana.deb && \ rm /etc/grafana/grafana.ini && \ diff --git a/telegraf/rootfs/Dockerfile b/telegraf/rootfs/Dockerfile index 0b0fd47..5b61808 100644 --- a/telegraf/rootfs/Dockerfile +++ b/telegraf/rootfs/Dockerfile @@ -4,14 +4,14 @@ COPY . / RUN mkdir -p /usr/local/bin/ \ # This will come back once the kuberentes plugin is release in November - # && curl -SL -o /tmp/telegraf.deb https://dl.influxdata.com/telegraf/releases/telegraf_1.0.0_amd64.deb \ + # && curl -fsSL -o /tmp/telegraf.deb https://dl.influxdata.com/telegraf/releases/telegraf_1.0.0_amd64.deb \ # && dpkg -i /tmp/telegraf.deb \ # && rm /tmp/telegraf.deb \ - && curl -sSL -o /usr/bin/telegraf https://storage.googleapis.com/telegraf/telegraf \ + && curl -fsSL -o /usr/bin/telegraf https://storage.googleapis.com/telegraf/telegraf \ && chmod +x /usr/bin/telegraf \ - && curl -sSL -o /usr/bin/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 \ + && curl -fsSL -o /usr/bin/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 \ && chmod +x /usr/bin/envtpl \ - && curl -Ls -o /usr/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 \ + && curl -fsSL -o /usr/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 \ && chmod +x /usr/bin/jq CMD ["/start-telegraf"]