mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 16:32:48 +00:00
77f146b262
Originally called project metis, this feature allows you to do a lot of cool stuff, such as upgrading to a x265 encode, downloading releases with multiple languages, etc. Check out the wiki page at: https://github.com/Radarr/Radarr/wiki/Custom-Formats to learn more! Note: This feature is currently in "beta" and will get more tags and features in the future. Please let me know, if you have any issues and I hope this will allow for a lot of customization!
13 lines
791 B
Docker
13 lines
791 B
Docker
FROM mono:5.8
|
|
|
|
RUN dpkg --add-architecture i386 && apt-get update && apt-get install -y git ssh tar gzip ca-certificates wget zip wine wine32 wine64 libwine libwine:i386
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -E -
|
|
RUN apt-get install -y nodejs
|
|
RUN wget https://mediaarea.net/repo/deb/repo-mediaarea_1.0-5_all.deb && dpkg -i repo-mediaarea_1.0-5_all.deb && apt-get update
|
|
RUN apt-get install -y libmediainfo-dev libmediainfo0 mediainfo
|
|
RUN npm i -g npm
|
|
RUN apt-get install -y python3-pip && pip3 install gitchangelog pystache
|
|
RUN curl -O https://dl.google.com/go/go1.10.2.linux-amd64.tar.gz && tar xvf go*.tar.gz && chown -R root:root ./go && mv go /usr/local
|
|
ENV GOPATH=$HOME/work
|
|
ENV PATH="${PATH}:/usr/local/go/bin:$GOPATH/bin"
|
|
RUN go get github.com/aktau/github-release
|