Merge pull request #6 from linuxserver/bump_alpine_3.7

bump alpine 3.7
This commit is contained in:
sparklyballs 2018-01-08 12:56:43 +00:00 committed by GitHub
commit 8e84a56c7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View File

@ -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/*

View File

@ -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.