SimpleContainerGenerator.jl
SimpleContainerGenerator.jl copied to clipboard
Create container images for using Julia packages (especially useful in environments without Internet access)
This pull request changes the compat entry for the `PackageCompiler` package from `1.2.2` to `1.2.2, 2`. This keeps the compat entries for earlier versions. Note: I have not tested your...
It would be great to extend `SimpleContainerGenerator.jl` support to unregistered packages. Currently one can set `pkgs` argument to `SimpleContainerGenerator.create_dockerfile` as `pkgs = [(name = "MyUnregisteredPackage.jl", url = "https://...")]` and `name`...
Closes #102 It's geared directly at github, but I think it's general enough at this point (the known hosts step can be extended to gitlab or whatever if users request...
I'd like to be able to add a private registry into the pipeline with something like ```julia Pkg.Registry.add(Pkg.RegistrySpec(url = "[email protected]:MyCompany/JuliaRegistry.git")) ``` and an appropriate way to use my ssh key...
I would like to create a docker image containing packages which I installed via GitHub - but I keep running into problems saying that the packages aren't found in the...
I'd like to use this package to define a base container on which to add some additional code. Is it possible to add an option to set the entrypoint (possibly...
Hi, I am looking for an arm64 container generator. Would be great to have this option as well, instead of default x86_64. Many thanks, Thore
Hi, I'm trying to build a container on Mac OS Catalina 10.15.4 but run into the following error: ``` import SimpleContainerGenerator mkpath("my_image_name") cd("my_image_name") pkgs = [ "DataFrames" ] julia_version =...