Skip to content

A starting point for your custom Dockerfile that works on binder. You probably don't want to use this.

License

Notifications You must be signed in to change notification settings

N-Coder/minimal-dockerfile

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Minimal Dockerfiles for Binder

Binder

Binder needs only one thing for images to work:

  • to be able to launch jupyter notebook as a specified user (passed via docker build args as NB_UID/NB_USER)

What this means in practice is that the notebook package must be installed and on PATH:

RUN pip install --no-cache notebook

That's almost everything.

The remaining piece is that the specified user must be able to start the notebook, which requires certain permissions like being able to write to the home directory.

The absolute bare minimum for this is to set HOME to /tmp so that it's writable, which would make the shortest, smallest Dockerfile that works on Binder:

FROM python:3.7-slim
RUN pip install --no-cache notebook
ENV HOME=/tmp

which you can try out: Binder

However, it would be better to consume the NB_UID/NB_USER arguments and create a real user:

# create user with a home directory
ARG NB_USER
ARG NB_UID
ENV USER ${NB_USER}
ENV HOME /home/${NB_USER}

RUN adduser --disabled-password \
    --gecos "Default user" \
    --uid ${NB_UID} \
    ${NB_USER}
WORKDIR ${HOME}

From this point, you can start adding files, installing packages, etc.

About

A starting point for your custom Dockerfile that works on binder. You probably don't want to use this.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%