Mono (C#) Docker image based on alpine linux (Fork of frol/docker-alpine-mono )
10K+
This image is based on Alpine Linux image, which is only a 5MB image, and contains Mono.
Download size of this image is only:
$ echo 'using System; class MainClass { public static void Main (string[] args) { Console.WriteLine ("Hello World"); } }' > qq.mono
$ docker run --rm -v "$(pwd)":/mnt esolitos/alpine-mono sh -c "mcs -out:/mnt/qq.exe /mnt/qq.mono && mono /mnt/qq.exe"
Once you have run these commands you will have qq.exe mono-executable in your
current directory, and you will get printed 'Hello World' from Mono!
Content type
Image
Digest
Size
97.6 MB
Last updated
over 7 years ago
docker pull esolitos/alpine-mono