Skip to content

Commit

Permalink
first docker commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrinks committed Jul 23, 2024
1 parent df24ddd commit c6951a8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit c6951a8

Please sign in to comment.