From e7d242210109f5c0cc069fff37984de99e183853 Mon Sep 17 00:00:00 2001 From: Starcalc Date: Tue, 14 Nov 2017 13:37:49 +0100 Subject: [PATCH] Correct make error "wget: not an http or ftp url:" xiph.org redirects to https, which busybox can't download. (wget: not an http or ftp url:) Corrected this by: Installing wget first and adding --no-check-certificate so that the file gets downloaded. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed5ed05..dc937b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM gliderlabs/alpine:3.1 -RUN apk-install espeak opus lame flac && \ +RUN apk-install espeak opus lame flac wget && \ apk del libstdc++ RUN cd /tmp && \ - wget http://downloads.xiph.org/releases/opus/opus-tools-0.1.9.tar.gz && \ + wget http://downloads.xiph.org/releases/opus/opus-tools-0.1.9.tar.gz --no-check-certificate && \ tar xzf opus-tools-0.1.9.tar.gz && \ cd opus-tools-0.1.9/ && \ apk-install build-base flac-dev opus-dev libogg-dev && \