Skip to content

Instantly share code, notes, and snippets.

@danidiaz
Last active September 16, 2019 21:43
Show Gist options
  • Select an option

  • Save danidiaz/e8ff90b62d7b52afa6569f214b4cba3d to your computer and use it in GitHub Desktop.

Select an option

Save danidiaz/e8ff90b62d7b52afa6569f214b4cba3d to your computer and use it in GitHub Desktop.
customized Graal CE Dockerfile for Truffle experiments
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