Skip to content

Instantly share code, notes, and snippets.

@akimboyko
Created December 20, 2015 06:57
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 akimboyko/b805b06112cefa446f40 to your computer and use it in GitHub Desktop.
Save akimboyko/b805b06112cefa446f40 to your computer and use it in GitHub Desktop.
Dockerfile for Akka.NET on Mono
FROM mono:latest
MAINTAINER Akim Boyko "akim dot boyko at gmail.com" version: 0.1
ENV AKKADIR /akka
RUN mkdir -p $AKKADIR
WORKDIR $AKKADIR
RUN mozroots --import --sync
ADD bin/Debug $AKKADIR
CMD [ "mono", "./LetsStart.exe" ]
sudo mkdir -p /mnt/samples && sudo mount -r -t vboxsf samples /mnt/samples
cp /mnt/samples/Dockerfile . && cp -r /mnt/samples/bin .
docker build -t samples .
docker run -i samples
docker run -it samples bash
docker images
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment