Last active
January 30, 2018 14:38
-
-
Save damtur/3519cb6e74ed570c8b4bbb5baddc86fe to your computer and use it in GitHub Desktop.
Microsoft Dotnet runtime with updated curl docker file
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 && \ | |
tar -xvjf curl-7.53.1.tar.bz2 && \ | |
cd curl-7.53.1 && \ | |
./configure && \ | |
make && \ | |
make install && \ | |
ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment