* Update DockerFile

* Update DockerFile
This commit is contained in:
Poag 2017-07-04 09:06:09 +01:00 committed by GitHub
parent cd8c8b3281
commit 09c6a822d7

View File

@ -1,12 +1,15 @@
FROM microsoft/dotnet:1.1.2-sdk FROM phusion/baseimage:latest
MAINTAINER Poag <poag@gany.net>
WORKDIR /opt/ WORKDIR /opt/
#Install required software #Install Dotnet
RUN echo "deb http://www.deb-multimedia.org jessie main non-free" | tee /etc/apt/sources.list.d/debian-backports.list \ RUN sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list' \
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 \
&& apt-get update \ && apt-get update \
&& apt-get install -y --force-yes deb-multimedia-keyring \ && apt-get install -y dotnet-dev-1.0.4
#Install required software
RUN apt-get update \
&& apt-get update \ && apt-get update \
&& apt-get install -y git libopus0 opus-tools libopus-dev libsodium-dev ffmpeg rsync && apt-get install -y git libopus0 opus-tools libopus-dev libsodium-dev ffmpeg rsync