mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-13 21:12:57 +00:00
Add example for deploying notebook container using Docker Compose.
(c) Copyright IBM Corp. 2016
This commit is contained in:
15
examples/docker-compose/notebook/Dockerfile
Normal file
15
examples/docker-compose/notebook/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
# Pick your favorite docker-stacks image
|
||||
FROM jupyter/minimal-notebook:55d5ca6be183
|
||||
|
||||
USER jovyan
|
||||
|
||||
# Add permanent pip/conda installs, data files, other user libs here
|
||||
# e.g., RUN pip install jupyter_dashboards
|
||||
|
||||
USER root
|
||||
|
||||
# Add permanent apt-get installs and other root commands here
|
||||
# e.g., RUN apt-get install npm nodejs
|
Reference in New Issue
Block a user