mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-18 15:33:02 +00:00
Reorder Dockerfile, include Maintainer
This commit is contained in:
18
Dockerfile
18
Dockerfile
@@ -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"]
|
||||||
|
Reference in New Issue
Block a user