forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
48 lines (35 loc) · 1.63 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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"]