Merge pull request #65 from linuxserver/continuation_lines

fix continuation lines xenial
This commit is contained in:
sparklyballs 2017-12-16 17:25:04 +00:00 committed by GitHub
commit f442b28249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

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

View File

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