Skip to content

Simple Docker Image for trying out GraalVM

License

Notifications You must be signed in to change notification settings

Danny02/graalvm-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GraalVM Docker Image

GraalVM is the new Java compiler backend. This Docker Image helps experimenting with native images.

asciicast

Usage

Use the prebuild image.

Mount the current directory:

docker run --rm -it -v $(pwd):/app danny02/graalvm bash

Now run the following commands:

cd app
javac HelloWorld.java
native-image HelloWorld