Reorder Dockerfile, include Maintainer

This commit is contained in:
Kyle Kelley
2014-09-13 16:00:25 -05:00
parent e5e605ca8e
commit 183e52dd01

View File

@@ -1,17 +1,23 @@
FROM node:0.10.31 FROM node:0.10.31
RUN npm install -g jupyter/configurable-http-proxy MAINTAINER IPython Project <ipython-dev@scipy.org>
RUN npm install -g bower less
ADD . /srv/jupyterhub
WORKDIR /srv/jupyterhub
# System pre-requisites
RUN apt-get update RUN apt-get update
RUN apt-get -y install python-dev python-pip RUN apt-get -y install python-dev python-pip
RUN npm install -g bower less
# Add sources for jupyterhub
ADD . /srv/jupyterhub
WORKDIR /srv/jupyterhub
# Install the configurable http proxy, used by Jupyter Hub
RUN npm install -g jupyter/configurable-http-proxy
# Install JupyterHub!
RUN pip install . RUN pip install .
# Default port for JupyterHub
EXPOSE 8000 EXPOSE 8000
CMD ["jupyterhub"] CMD ["jupyterhub"]