Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 1.34 KB

content.md

File metadata and controls

29 lines (17 loc) · 1.34 KB

What is Julia?

Julia is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users of other technical computing environments. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.

julialang.org

%%LOGO%%

Support Tiers

Platforms supported by Julia are divided into a tier system that ranks them based on level of support. For more dedicated information about support tiers, please see "Currently supported platforms" on the Julia download page.

It's especially relevant to note that Alpine / musl is "Tier 3" due to several known issues (see docker-library/julia#47 (comment), JuliaLang/julia#28805, JuliaLang/julia#36458).

How to use this image

Start Julia REPL

Starting the Julia REPL is as easy as the following:

$ docker run -it --rm %%IMAGE%%

Run Julia script from your local directory inside container

$ docker run -it --rm -v "$PWD":/usr/myapp -w /usr/myapp %%IMAGE%% julia script.jl arg1 arg2