From c6951a86a73c5dff30e0ed92da8a097f6f973280 Mon Sep 17 00:00:00 2001 From: Josh Brinks Date: Tue, 23 Jul 2024 16:16:58 -0400 Subject: [PATCH] first docker commit --- dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..f435a79 --- /dev/null +++ b/dockerfile @@ -0,0 +1,19 @@ +# Get the rocker image we want +FROM rocker/binder:latest + +# Python Environment +## python and pip +RUN apt-get update +RUN apt-get install -y python3 +RUN apt-get install -y python3-pip +## python geospatial +RUN pip install geopandas pyproj shapely xarray rioxarray +RUN pip install rasterio netcdf4 h5netcdf dask bottleneck +RUN pip install numpy pandas nc-time-axis requests +## exactextract +### dependencies +RUN pip install CMake pybind11 GEOS +### latest on git +RUN pip install git+https://github.com/isciences/exactextract.git + +CMD ["/init"] \ No newline at end of file