Spaces:
Build error
Build error
Commit
·
439722a
1
Parent(s):
87ba692
Update Dockerfile
Browse files- Dockerfile +12 -0
Dockerfile
CHANGED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM continuumio/miniconda3:4.10.3p1
|
2 |
+
|
3 |
+
RUN conda install \
|
4 |
+
xarray \
|
5 |
+
netCDF4 \
|
6 |
+
bottleneck \
|
7 |
+
numpy \
|
8 |
+
pandas \
|
9 |
+
matplotlib \
|
10 |
+
jupyterlab
|
11 |
+
|
12 |
+
CMD ["jupyter-lab","--ip=0.0.0.0", "--port", "7860"]
|