Docker Image for DMD the Digital Mars D Compiler.
Installation of a compiler sometimes is cumbersome. This Docker image should take this pain and allow you to easily switch between Versions of the same compiler and even different compilers.
In case a native installation is required, curl -fsS https://dlang.org/install.sh | bash -s dmd could be used.
Allows to use all major D Compilers without installation.
Place a test.d in your current directory.
import std.stdio;
void main() {
writeln("Hello, World!");
}
Then execute
docker run --rm -ti -v $(pwd):/src dlanguage/dmd dmd -run test.d
This should plot:
Hello, World!
Content type
Image
Digest
Size
161.4 MB
Last updated
almost 6 years ago
docker pull logicfish/dmd