Update to latest Jackett release and use mono
This commit is contained in:
parent
381ab68118
commit
0057e5e494
|
@ -1,15 +1,19 @@
|
|||
FROM buildpack-deps:xenial-scm
|
||||
MAINTAINER Jean Froment <froment.je@gmail.com>
|
||||
|
||||
# Get latest path for Jackett
|
||||
jack_tag=$(curl -sX GET "https://api.github.com/repos/Jackett/Jackett/releases/latest" \
|
||||
| awk '/tag_name/{print $4;exit}' FS='[""]')
|
||||
|
||||
# Install Sonarr, S6, and Jackett
|
||||
RUN echo "deb http://apt.sonarr.tv/ master main" \
|
||||
> /etc/apt/sources.list.d/sonarr.list \
|
||||
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FDA5DFFC \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y nzbdrone libcurl4-openssl-dev \
|
||||
&& apt-get install -y nzbdrone libcurl4-openssl-dev mono \
|
||||
&& curl -sL "https://github.com/just-containers/s6-overlay/releases/download/v1.18.1.5/s6-overlay-amd64.tar.gz" \
|
||||
| tar xz -C / \
|
||||
&& curl -sL "https://github.com/Jackett/Jackett/releases/download/v0.7.420/Jackett.Binaries.Mono.tar.gz" \
|
||||
&& curl -sL "https://github.com/Jackett/Jackett/releases/download/$jack_tag/Jackett.Binaries.Mono.tar.gz" \
|
||||
| tar xz -C /opt \
|
||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
Loading…
Reference in New Issue