mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
14 lines
817 B
Docker
14 lines
817 B
Docker
FROM mono:5.18
|
|
|
|
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-7_all.deb && dpkg -i repo-mediaarea_1.0-7_all.deb && apt-get update
|
|
RUN apt-get install -y libmediainfo-dev libmediainfo0v5 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
|
|
RUN npm install -g yarn |