diff --git a/influxdb/Dockerfile b/influxdb/Dockerfile index 906a870..73d9268 100644 --- a/influxdb/Dockerfile +++ b/influxdb/Dockerfile @@ -13,7 +13,7 @@ ENV COLLECTD_URL=https://github.com/collectd/collectd/raw/master/src/types.db RUN set -xe \ && apt-get update \ - && apt-get install -y wget \ + && apt-get install -y ca-certificates wget \ && wget ${INFLUXDB_URL} -O ${INFLUXDB_FILE} \ && echo "${INFLUXDB_MD5} ${INFLUXDB_FILE}" | md5sum -c \ && dpkg -i ${INFLUXDB_FILE} \ diff --git a/influxdb/arm/Dockerfile b/influxdb/arm/Dockerfile index 3747e60..448b602 100644 --- a/influxdb/arm/Dockerfile +++ b/influxdb/arm/Dockerfile @@ -13,7 +13,7 @@ ENV COLLECTD_URL=https://github.com/collectd/collectd/raw/master/src/types.db RUN set -xe \ && apt-get update \ - && apt-get install -y wget \ + && apt-get install -y ca-certificates wget \ && wget ${INFLUXDB_URL} -O ${INFLUXDB_FILE} \ && echo "${INFLUXDB_MD5} ${INFLUXDB_FILE}" | md5sum -c \ && dpkg -i ${INFLUXDB_FILE} \