From e51510d6c30799247a82b1d65b91060c261f4e56 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 6 Feb 2017 17:11:18 +0000 Subject: [PATCH] rebase to alpine 3.5 --- Dockerfile | 17 +++++++++-------- README.md | 1 + 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5c9bd3e..d92b334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/alpine +FROM lsiobase/alpine:3.5 MAINTAINER sparklyballs # set version label @@ -6,20 +6,21 @@ ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -# package version +# package version ARG UBOOQUITY_VER="1.10.1" -# install build packages +# install build packages RUN \ apk add --no-cache --virtual=build-dependencies \ curl \ unzip && \ -# install runtime packages +# install runtime packages apk add --no-cache \ + --repository http://nl.alpinelinux.org/alpine/edge/community \ openjdk8-jre-base && \ -# install ubooquity +# install ubooquity mkdir -p \ /opt/ubooquity \ /opt/ubooquity/fonts && \ @@ -28,15 +29,15 @@ RUN \ "http://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VER}.zip" && \ unzip /tmp/ubooquity.zip -d /opt/ubooquity && \ -# cleanup +# cleanup apk del --purge \ build-dependencies && \ rm -rf \ /tmp/* -# copy local files +# copy local files COPY root/ / -# ports and volumes +# ports and volumes EXPOSE 2202 VOLUME /books /comics /config /files diff --git a/README.md b/README.md index d88d6bf..fa17a96 100644 --- a/README.md +++ b/README.md @@ -98,4 +98,5 @@ Then you can access the webui at `http://:2202/ubooquity/` ## Versions ++ **06.02.17:** Rebase to alpine 3.5. + **06.12.16:** Initial Release.