Skip to content

Instantly share code, notes, and snippets.

@directhex
Created October 16, 2014 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save directhex/4f015fed9621432d2eb4 to your computer and use it in GitHub Desktop.
Save directhex/4f015fed9621432d2eb4 to your computer and use it in GitHub Desktop.
FROM debian:wheezy
#based on dockerfile by Michael Friis <friism@gmail.com>
RUN apt-get update \
&& apt-get install -y curl
&& rm -rf /var/lib/apt/lists/*
RUN curl http://download.mono-project.com/repo/xamarin.gpg | apt-key add -
RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" > /etc/apt/sources.list.d/mono-xamarin.list \
&& apt-get update \
&& apt-get install -y mono-devel fsharp mono-vbnc nuget \
&& rm -rf /var/lib/apt/lists/*
RUN mozroots --machine --import --sync --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment