Skip to content

Instantly share code, notes, and snippets.

View dirkcgrunwald's full-sized avatar

Dirk Grunwald dirkcgrunwald

View GitHub Profile
@dirkcgrunwald
dirkcgrunwald / Dockerfile
Created November 11, 2019 22:53
Jupyterhub notebook Dockerfile for University of Colorado Coding lab
ARG BASE_CONTAINER=jupyter/datascience-notebook:1386e2046833
FROM $BASE_CONTAINER
LABEL MAINTAINER="CSEL Ops <admin@cs.colorado.edu>"
#############################################################################
## CU specific
#############################################################################
USER root
FROM jupyter/minimal-notebook
USER root
RUN apt-get update && apt-get install net-tools
#
# See https://github.com/jupyter/notebook/issues/4311 for specific issue with tornado
#
RUN conda install --no-update-deps -c conda-forge \