diff options
| author | perburn <perburn@users.noreply.github.com> | 2016-03-02 10:01:02 +0100 |
|---|---|---|
| committer | perburn <perburn@users.noreply.github.com> | 2016-03-02 10:01:02 +0100 |
| commit | b47608f1105a709a51974fb14d844e3ea9574c7d (patch) | |
| tree | a8870cc24fea256bd5dea8c4b5b486d6a829678a | |
| parent | 6ef83d0e058d653322a8f9eb1131e665fb9b2a70 (diff) | |
Changed download operation from wget to curl since busybox wget does not support HTTPS
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |
