Skip to content

Instantly share code, notes, and snippets.

@bazwilliams
Created April 23, 2016 00:36
Show Gist options
  • Save bazwilliams/6780d95a2846941469e63d0b4b0b3e19 to your computer and use it in GitHub Desktop.
Save bazwilliams/6780d95a2846941469e63d0b4b0b3e19 to your computer and use it in GitHub Desktop.
Replicate solution build environment using Docker
FROM mono:latest
ADD . /usr/src/app/
WORKDIR /usr/src/app
ADD https://dist.nuget.org/win-x86-commandline/latest/nuget.exe /usr/src/app/packages
RUN apt-get update && apt-get install -y vim make
CMD /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment