# Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. FROM jupyterhub/jupyterhub-onbuild:0.7.2 # Install dockerspawner, oauth, postgres RUN /opt/conda/bin/conda install psycopg2=2.7 && \ /opt/conda/bin/conda clean -tipsy && \ /opt/conda/bin/pip install \ oauthenticator==0.5.* \ dockerspawner==0.7.* # Copy TLS certificate and key ENV SSL_CERT /srv/jupyterhub/secrets/jupyterhub.crt ENV SSL_KEY /srv/jupyterhub/secrets/jupyterhub.key COPY ./secrets/*.crt $SSL_CERT COPY ./secrets/*.key $SSL_KEY RUN chmod 700 /srv/jupyterhub/secrets && \ chmod 600 /srv/jupyterhub/secrets/* COPY ./userlist /srv/jupyterhub/userlist