container.jl 346 B

12345678910
  1. # https://github.com/docker-library/julia/pull/6
  2. download("https://google.com")
  3. # https://github.com/docker-library/julia/pull/9
  4. if VERSION.major > 0 || (VERSION.major == 0 && VERSION.minor >= 7)
  5. # https://github.com/docker-library/julia/pull/21
  6. # https://github.com/JuliaLang/julia/tree/v0.7.0-beta2/stdlib/Pkg
  7. using Pkg
  8. end
  9. Pkg.add("JSON")