Last active
September 16, 2019 21:43
-
-
Save danidiaz/e8ff90b62d7b52afa6569f214b4cba3d to your computer and use it in GitHub Desktop.
customized Graal CE Dockerfile for Truffle experiments
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 oracle/graalvm-ce | |
| WORKDIR /truffle-sandbox | |
| RUN yum-config-manager --save --setopt=ol7_developer_EPEL.skip_if_unavailable=true && \ | |
| yum install -y iputils && \ | |
| yum install -y iproute && \ | |
| yum install -y xeyes && \ | |
| yum install -y git && \ | |
| yum install -y maven && \ | |
| yum install -y vim && \ | |
| gu install native-image && \ | |
| git clone -c http.sslVerify=false https://github.com/graalvm/simplelanguage.git && \ | |
| mvn -f /truffle-sandbox/simplelanguage/pom.xml clean | |
| CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment