jupyter / Dockerfile
osanseviero's picture
osanseviero HF staff
Update Dockerfile
92dc465
raw
history blame
No virus
249 Bytes
FROM continuumio/miniconda3:4.10.3p1
RUN conda install \
xarray \
netCDF4 \
bottleneck \
numpy \
pandas \
matplotlib \
jupyterlab
RUN chown 1000:1000 /.local
CMD ["jupyter-lab","--ip=0.0.0.0", "--port=7860"]