Skip to content

Instantly share code, notes, and snippets.

@damtur
damtur / Dockerfile
Last active January 30, 2018 14:38
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 && \