ssciwr / dockerfile-kernel

Docker kernel for Jupyter Lab
MIT License
5 stars 1 forks source link

easy install #7

Closed lorenz369 closed 1 year ago

lorenz369 commented 1 year ago

goal

create an install magic to simplify adding packages to the docker image via different installers

installers (in this order)

apt, pip, conda, npm

example

instead of

apt-get update && apt-get install -y somepackage && rm-rf  #to clean up apt-get update

we want

%install apt somepackage
lorenz369 commented 1 year ago

Add apt as second option to apt-get.

optional: support --no-install-recommends see here

lorenz369 commented 1 year ago

Double-check conda, npm, pip commands

lorenz369 commented 1 year ago

Implemented here