summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorperburn <perburn@users.noreply.github.com>2016-03-02 10:01:02 +0100
committerperburn <perburn@users.noreply.github.com>2016-03-02 10:01:02 +0100
commitb47608f1105a709a51974fb14d844e3ea9574c7d (patch)
treea8870cc24fea256bd5dea8c4b5b486d6a829678a
parent6ef83d0e058d653322a8f9eb1131e665fb9b2a70 (diff)
Changed download operation from wget to curl since busybox wget does not support HTTPS
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 5b1ee501..fc96f9aa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ RUN apk-install nginx bash ca-certificates s6 curl \
&& curl -sS https://getcomposer.org/installer | php -- --filename=/usr/local/bin/composer
RUN cd /var/www \
- && wget https://github.com/fguillot/kanboard/archive/master.zip \
+ && curl -LO https://github.com/fguillot/kanboard/archive/master.zip \
&& unzip -qq master.zip \
&& rm -f *.zip \
&& mv kanboard-master kanboard \