about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAlex Coto <alexrc09@gmail.com>2017-11-17 12:21:05 -0500
committerEugen Rochko <eugen@zeonfederated.com>2017-11-17 18:21:05 +0100
commitae6dd081210bd892812811e16094cda618466e8f (patch)
tree41f784a5dd1b0067b2e9246412ef3e94c0ec7afd /Dockerfile
parente28b33c89c9a4c6baa79cedb5d6db1ed612710af (diff)
Change libinconv download URL to HTTPS (#5738)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c3b38fa8b..f9354ac46 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -48,7 +48,7 @@ RUN apk -U upgrade \
  && rm yarn.tar.gz \
  && mv /tmp/src/yarn-v$YARN_VERSION /opt/yarn \
  && ln -s /opt/yarn/bin/yarn /usr/local/bin/yarn \
- && wget -O libiconv.tar.gz "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$LIBICONV_VERSION.tar.gz" \
+ && wget -O libiconv.tar.gz "https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$LIBICONV_VERSION.tar.gz" \
  && echo "$LIBICONV_DOWNLOAD_SHA256 *libiconv.tar.gz" | sha256sum -c - \
  && tar -xzf libiconv.tar.gz -C /tmp/src \
  && rm libiconv.tar.gz \