-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
17 lines (14 loc) · 786 Bytes
/
Dockerfile
File metadata and controls
17 lines (14 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM bytesized/debian-base
MAINTAINER maran@bytesized-hosting.com
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \
echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.list.d/mono-xamarin.list && \
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FDA5DFFC \
&& echo "deb http://apt.sonarr.tv/ master main" | tee -a /etc/apt/sources.list \
&& apt-get update -q
RUN apt-get install -qy mono-complete nzbdrone mediainfo libcurl3\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY /static /
VOLUME /config /data /media
EXPOSE 8989