123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- FROM mambaorg/micromamba:0.14.0 as build
- # Install basic tools
- RUN micromamba install -qy -c conda-forge python nodejs yarn \
- && useradd --shell /bin/bash jovyan \
- && chown jovyan $HOME
- # Install npm packages - faster build thanks to caching
- ## package_json.tar.gz contains all package.json files using
- ## `tar cvf package_json.tar.gz package.json packages/*/package.package_json`
- ADD ./package_json.tar.gz /tmp/jupyterlab-dev
- COPY yarn.lock /tmp/jupyterlab-dev
- RUN cd /tmp/jupyterlab-dev \
- && yarn install --ignore-scripts
- # Install python dependencies - faster build thanks to caching
- COPY setup.cfg /tmp
- RUN list_package=$(python -c "from configparser import ConfigParser; c = ConfigParser(); c.read('/tmp/setup.cfg'); print(' '.join(c['options']['install_requires'].strip().splitlines()))") \
- && micromamba install -qy -c conda-forge $list_package \
- && micromamba clean -ay \
- && rm /tmp/setup.cfg
- # Install JupyterLab
- COPY --chown=jovyan ./builder/ /tmp/jupyterlab-dev/builder/
- COPY --chown=jovyan ./buildutils/ /tmp/jupyterlab-dev/buildutils/
- COPY --chown=jovyan ./dev_mode/ /tmp/jupyterlab-dev/dev_mode/
- COPY --chown=jovyan ./jupyterlab/ /tmp/jupyterlab-dev/jupyterlab/
- COPY --chown=jovyan ./packages/ /tmp/jupyterlab-dev/packages/
- COPY --chown=jovyan ./scripts/ /tmp/jupyterlab-dev/scripts/
- COPY --chown=jovyan ./*.* ./LICENSE /tmp/jupyterlab-dev/
- RUN pushd /tmp/jupyterlab-dev \
- && pip install -e .[ui-tests]
- USER jovyan
- WORKDIR ${HOME}
- ENV PATH="/home/micromamba/.local/bin:$PATH"
- RUN mkdir -p /home/micromamba/jlab_root
- COPY ./docker/jupyter_server_config.json /etc/jupyter/
- EXPOSE 8888
- ENTRYPOINT ["jupyter", "lab"]
|