Add Julia

This commit is contained in:
1computer1 2019-03-15 20:24:49 -04:00
parent c8048b3a08
commit b1ecae7841
4 changed files with 33 additions and 0 deletions

4
docker/julia/Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM julia
LABEL author="1Computer1"
COPY run.sh /var/run/

5
docker/julia/run.sh Normal file
View file

@ -0,0 +1,5 @@
if [ "$EVAL_EXPR" = "true" ]; then
julia -E "$1"
else
julia -e "$1"
fi