beacon-biosignals / julia_pod

k8s native julia development
MIT License
10 stars 3 forks source link

local dev dependencies break the docker image build #74

Open kleinschmidt opened 1 year ago

kleinschmidt commented 1 year ago

These are only copied in the very last step, but the full project/manifest file is used in the deps stage, where we do Pkg.instantiate(); Pkg.build(); Pkg.precompile(). I think at that stage we either need to use the sysimage project/manifest (with the non-registered dependencies removed), or we need to copy all the local dev paths into the image for that stage. I'm not sure that's such a great idea though because they may be outside of the dev/ prefix...

kleinschmidt commented 1 year ago

See #73 for proof that this breaks the image build...