From 95d5be9569e773cd248bb6cebe392e2a9eb1ac48 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Thu, 7 Dec 2017 13:16:51 +0000 Subject: [PATCH] bump to alpine 3.7 and fix continuation lines --- Dockerfile | 18 +++++++----------- README.md | 1 + 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c36c5a..d82fe8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,16 @@ -FROM lsiobase/alpine:3.6 -MAINTAINER saarg +FROM lsiobase/alpine:3.7 # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="saarg" # package versions ARG DDCLIENT_VER="3.8.3" -# install build time dependencies RUN \ + echo "**** install build packages ****" && \ apk add --no-cache --virtual=build-dependencies \ bzip2 \ curl \ @@ -18,20 +18,17 @@ RUN \ make \ tar \ wget && \ - -# install runtime dependencies + echo "**** install runtime packages ****" && \ apk add --no-cache \ inotify-tools \ perl \ perl-digest-sha1 \ perl-io-socket-ssl \ perl-json && \ - -# install Perl cpan modules not in alpine + echo "***** install perl modules ****" && \ curl -L http://cpanmin.us | perl - App::cpanminus && \ cpanm JSON::Any && \ - -# install ddclient + echo "**** install ddclient ****" && \ mkdir -p \ /tmp/ddclient && \ curl -o \ @@ -41,8 +38,7 @@ RUN \ /tmp/ddclient.tar.bz2 -C \ /tmp/ddclient --strip-components=1 && \ install -Dm755 /tmp/ddclient/ddclient /usr/bin/ && \ - -# cleanup + echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \ rm -rf \ diff --git a/README.md b/README.md index 722f594..b0857ad 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ Edit the ddclient.conf file found in your /config volume. This config file has m ## Versions ++ **07.12.2017:** Rebase to alpine 3.7. + **28.05.2017:** Rebase to alpine 3.6. + **10.02.2017:** Rebase to alpine 3.5. + **26.11.2016:** Update README to new standard and add icon and other small details.