Created
December 20, 2015 06:57
-
-
Save akimboyko/b805b06112cefa446f40 to your computer and use it in GitHub Desktop.
Dockerfile for Akka.NET on Mono
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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