Skip to content

Instantly share code, notes, and snippets.

@Abathargh
Created November 6, 2020 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Abathargh/00e47c3b2aaa2a70d77451c41bfb3166 to your computer and use it in GitHub Desktop.
Save Abathargh/00e47c3b2aaa2a70d77451c41bfb3166 to your computer and use it in GitHub Desktop.
Jade 4.5.0 over OpenJDK11 image
FROM openjdk:11.0.8
ENV CLASSPATH="/usr/lib/jade/jade.jar"
RUN wget --no-check-certificate -O jade.zip https://jade.tilab.com/dl.php?file=JADE-bin-4.5.0.zip
RUN unzip jade.zip && mkdir /usr/lib/jade && mv jade/lib/jade.jar /usr/lib/jade/jade.jar && rm -rf jade/ jade.zip
CMD [""]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment