From 2d604921bc15e844d2f2498b8c719ae9cbe3354d Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Fri, 15 Dec 2017 11:23:26 +0000 Subject: [PATCH] fix continuation lines xenial --- Dockerfile | 10 ++++------ README.md | 1 + 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2787db1..b1c0333 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,25 @@ FROM lsiobase/mono -MAINTAINER sparklyballs # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" # set environment variables ARG DEBIAN_FRONTEND="noninteractive" ENV XDG_CONFIG_HOME="/config/xdg" -# add sonarr repository RUN \ + echo "**** add sonarr repository ****" && \ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FDA5DFFC && \ echo "deb http://apt.sonarr.tv/ master main" > \ /etc/apt/sources.list.d/sonarr.list && \ - -# install packages + echo "**** install packages ****" && \ apt-get update && \ apt-get install -y \ nzbdrone && \ - -# cleanup + echo "**** cleanup ****" && \ apt-get clean && \ rm -rf \ /tmp/* \ diff --git a/README.md b/README.md index afd8a22..83d5e21 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ Monitor the logs of the container in realtime `docker logs -f sonarr`. ## Versions ++ **15.12.17:** Fix continuation lines. + **12.07.17:** Add inspect commands to README, move to jenkins build and push. + **17.04.17:** Switch to using inhouse mono baseimage, adds python also. + **14.04.17:** Change to mount /etc/localtime in README, thanks cbgj.