make-deploy example: run stacks on docker-machines

(c) Copyright IBM Corp. 2015
This commit is contained in:
Peter Parente / Justin Tyberg
2015-12-10 13:30:15 -05:00
parent 3afdf219f0
commit be926f24a1
5 changed files with 210 additions and 0 deletions

View 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:latest
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