From 8c7adcea0c15e1c0d136a13adac0cb8922ab1c0e Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 8 Jan 2018 11:32:50 +0000 Subject: [PATCH] bump alpine 3.7 --- Dockerfile | 13 +++++-------- README.md | 3 ++- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a69c2a..8e87b81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,13 @@ -FROM lsiobase/alpine.nginx:3.6 -MAINTAINER chbmb +FROM lsiobase/alpine.nginx:3.7 # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="chbmb" - -# install packages RUN \ + echo "**** install packages ****" && \ apk add --no-cache \ curl \ imagemagick \ @@ -22,8 +21,7 @@ RUN \ php7-mysqlnd \ php7-zip \ re2c && \ - -# install lychee + echo "**** install lychee ****" && \ mkdir -p \ /usr/share/webapps/lychee && \ lychee_tag=$(curl -sX GET "https://api.github.com/repos/electerious/Lychee/releases/latest" \ @@ -34,8 +32,7 @@ RUN \ tar xf \ /tmp/lychee.tar.gz -C \ /usr/share/webapps/lychee --strip-components=1 && \ - -# cleanup + echo "**** cleanup ****" && \ rm -rf \ /tmp/* diff --git a/README.md b/README.md index 0db5c65..332ee2b 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ Setup mysql/mariadb and account via the webui, more info at [lychee][appurl]. ## Versions -+ **25.05.17:** Rebase to alpine linux nginx 3.6. ++ **08.01.18:** Rebase to alpine 3.7. ++ **25.05.17:** Rebase to alpine 3.6. + **03.05.17:** Use repo pinning to better solve dependencies, use repo version of php7-imagick. + **12.02.17:** Initial Release.