jupyter / Dockerfile
osanseviero's picture
Update Dockerfile
8c71b74
raw
history blame
282 Bytes
FROM continuumio/miniconda3:4.10.3p1
RUN conda install \
xarray \
netCDF4 \
bottleneck \
numpy \
pandas \
matplotlib \
jupyterlab
ENV JUPYTER_TOKEN=easy
EXPOSE 7860
CMD ["jupyter-lab","--ip=0.0.0.0", "--port=7860", "--no-browser","--allow-root"]