blob: d0f9300781db959d0a4017adefc0651cd6788ec8 [file] [log] [blame]
FROM jupyterhub/jupyterhub:latest
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN pip install oauthenticator requests pyjwt dockerspawner jupyterhub-idle-culler ipywidgets
COPY jupyterhub_config.py /srv/jupyterhub/jupyterhub_config.py
COPY custom_templates /srv/jupyterhub/custom_templates
ENV JUPYTERHUB_CONFIG=/srv/jupyterhub/jupyterhub_config.py
ENV PYTHONPATH=/srv/jupyterhub
EXPOSE 20000
CMD ["jupyterhub"]