devcontainer-features icon indicating copy to clipboard operation
devcontainer-features copied to clipboard

Julia Development Container Feature

Results 3 devcontainer-features issues
Sort by recently updated
recently updated
newest added

When specifying PATH environment variable in the devcontainer.json, for example like this: ``` "remoteEnv": { "PATH": "${containerEnv:PATH}" } ``` the postcreate.jl script fails. ``` Running the postCreateCommand from Feature 'ghcr.io/julialang/devcontainer-features/julia:1'......

I get the following error during creation of a fresh dev container: ``` Running the postCreateCommand from Feature 'ghcr.io/julialang/devcontainer-features/julia:1'... [11384 ms] Start: Run in container: /bin/sh -c /usr/local/julia-devcontainer-features/postcreate.jl [20730 ms]...

Would it make sense to e.g. pre-compile some packages in `postcreate.jl` to make the language server etc. start faster? (once `postcreate.jl` is done) I.e. 1. `LanguageServer` et al., i.e. the...