Skip to content

Instantly share code, notes, and snippets.

@damtur
Last active January 30, 2018 14:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damtur/3519cb6e74ed570c8b4bbb5baddc86fe to your computer and use it in GitHub Desktop.
Save damtur/3519cb6e74ed570c8b4bbb5baddc86fe to your computer and use it in GitHub Desktop.
Microsoft Dotnet runtime with updated curl docker file
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