Don't install googletest.
[gromacs.git] / python_packaging / docker / notebook.dockerfile
blobd18493957991b9d2f8dd9df4eae198b0d282965f
1 # Provide an easy-to-reproduce environment in which to test full Python functionality.
3 # Run with default command and map the http port to the host.
5 #    docker run --rm -ti -p 8888:8888 gmxapi/notebook
7 # Building:
9 # Requires Docker 17.05 or higher.
11 # Use this (the "docker" directory) as the context directory.
13 #    docker build -t gmxapi/notebook -f notebook.dockerfile .
16 ARG REF=latest
17 FROM gmxapi/ci-mpich:$REF
19 RUN . $VENV/bin/activate && \
20     pip install --no-cache-dir jupyter
22 ADD --chown=testing:testing notebook /docker_entry_points
24 CMD ["notebook"]