From 788d31a33ea0bcc2967d56190ab936ca2a652d25 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Fri, 22 Dec 2017 07:19:37 +0000 Subject: [PATCH] fix continuation lines --- Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7a9cee1..d792b25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -# install build packages RUN \ + echo "**** install build packages ****" && \ apk add --no-cache --virtual=build-dependencies \ binutils-gold \ ghc \ @@ -17,22 +17,19 @@ RUN \ apk add --no-cache --virtual=build-dependencies \ --repository http://nl.alpinelinux.org/alpine/edge/community \ cabal && \ - -# compile shellcheck + echo "**** compile shellcheck ****" && \ git clone https://github.com/koalaman/shellcheck /tmp/shellcheck && \ cd /tmp/shellcheck && \ cabal update && \ cabal install && \ - -# install shellcheck + echo "**** install shellcheck ****" && \ cp /root/.cabal/bin/shellcheck /usr/local/bin/ && \ ldd \ /root/.cabal/bin/shellcheck | grep "=> /" \ | awk '{print $3}' | xargs -I '{}' cp -v '{}' \ /usr/local/lib/ && \ ldconfig /usr/local/lib && \ - -# cleanup + echo "**** cleanup ****" && \ apk del --purge \ build-dependencies && \ rm -rf \