You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that we'll want to create more scripts to assist with creating Julia Docker images. Transferring these various scripts individually is against the spirit of this repository to provide simplified Dockerfiles so we most likely want to include an easy way to install all of the scripts at once. The thought occurred to me that possibly we should just turn these scripts into Julia functions and we could install this just like a normal Julia package.
I suspect we would end up having an interface similar to Pkg in that we'd have our own version of Pkg.precompile. Something else I like about this is that it could let us have a kind of "compat" approach to contributing these changes back into Julia itself.
There are some concerns with doing this though. As these scripts are being used to assist in setting up Julia we could run into issues with Julia writing to a preliminary depot which will be later thrown away. Some things I'd like to look into before committing to this include:
Verify we have a nice way of using a Julia package which does not result in writes to the Julia depot
How concerned should we be about image bloat? Julia packages will copy in the test directory etc. We should set some guidelines around this
The text was updated successfully, but these errors were encountered:
It appears that we'll want to create more scripts to assist with creating Julia Docker images. Transferring these various scripts individually is against the spirit of this repository to provide simplified Dockerfiles so we most likely want to include an easy way to install all of the scripts at once. The thought occurred to me that possibly we should just turn these scripts into Julia functions and we could install this just like a normal Julia package.
I suspect we would end up having an interface similar to
Pkg
in that we'd have our own version ofPkg.precompile
. Something else I like about this is that it could let us have a kind of "compat" approach to contributing these changes back into Julia itself.There are some concerns with doing this though. As these scripts are being used to assist in setting up Julia we could run into issues with Julia writing to a preliminary depot which will be later thrown away. Some things I'd like to look into before committing to this include:
The text was updated successfully, but these errors were encountered: