This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/dotnet:1.0.3-runtime | |
RUN echo deb-src ftp://ftp.de.debian.org/debian/ stable main contrib >> /etc/apt/sources.list && \ | |
apt-get -y update && apt-get -y build-dep curl && \ | |
apt-get -y install wget | |
RUN mkdir ~/curl && \ | |
cd ~/curl && \ | |
wget http://curl.haxx.se/download/curl-7.53.1.tar.bz2 && \ |