Skip to content

Instantly share code, notes, and snippets.

@jmetzz
Created October 1, 2019 13:02
Show Gist options
  • Save jmetzz/eaa8e613504d736392af4a17a80651cd to your computer and use it in GitHub Desktop.
Save jmetzz/eaa8e613504d736392af4a17a80651cd to your computer and use it in GitHub Desktop.
FROM continuumio/miniconda3
LABEL maintainer "Jean Metz"
RUN conda install -c conda-forge jupyter ipywidgets jupyterlab \
numpy scipy pandas scikit-learn scikit-image \
matplotlib seaborn statsmodels plotly pillow
RUN jupyter serverextension enable --py jupyterlab
# Expose Jupyter port & cmd
EXPOSE 8888
RUN mkdir -p /opt/app/data
CMD jupyter lab --ip=* --port=8888 --no-browser --notebook-dir=/opt/app/data --allow-root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment