mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-17 06:52:59 +00:00
23
Dockerfile
Normal file
23
Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
FROM node:0.10.31
|
||||
|
||||
MAINTAINER IPython Project <ipython-dev@scipy.org>
|
||||
|
||||
# System pre-requisites
|
||||
RUN apt-get update
|
||||
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 .
|
||||
|
||||
# Default port for JupyterHub
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["jupyterhub"]
|
Reference in New Issue
Block a user