From 614d01436d702d8110891249ea949bcc839cd7a1 Mon Sep 17 00:00:00 2001 From: dnomd343 Date: Wed, 10 Aug 2022 10:43:15 +0800 Subject: [PATCH] build: fetch source code by https --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8dbeea7..5a1d7ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,10 +7,10 @@ RUN make && mv ./bin/vlmcs ./bin/vlmcsd ./etc/vlmcsd.kmd /tmp/ FROM alpine:3.16 AS iconv ENV ICONV_VERSION="1.17" -RUN wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-${ICONV_VERSION}.tar.gz && \ +RUN wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-${ICONV_VERSION}.tar.gz && \ tar xf libiconv-${ICONV_VERSION}.tar.gz RUN apk add build-base php8-dev -RUN wget http://php.net/distributions/php-$(php -v | grep -E '^PHP' | awk '{print $2}').tar.gz && \ +RUN wget https://php.net/distributions/php-$(php -v | grep -E '^PHP' | awk '{print $2}').tar.gz && \ tar xf php-*.tar.gz && mv ./php-*/ ./php/ WORKDIR ./libiconv-${ICONV_VERSION}/ RUN ./configure && make && make install && \