-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
044c923
commit a2982c1
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,23 +7,20 @@ | |
|
||
# Pull base image. We start from the mambaforge image | ||
FROM condaforge/mambaforge | ||
MAINTAINER Simon Mudd ([email protected]) and Boris Gailleton ([email protected]) | ||
MAINTAINER Simon Mudd ([email protected]) | ||
|
||
# Need this to shortcut the stupid tzdata noninteractive thing | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# We need to change the python version | ||
RUN mamba install -y python=3.8 | ||
RUN mamba install -y python=3.9 | ||
|
||
# We need some stuff to get lsdtopytools to install | ||
RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||
libfftw3-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
|
||
|
||
|
||
# Some tools for fetching data | ||
RUN mamba install -y wget unzip | ||
|
||
|
@@ -46,13 +43,13 @@ RUN mamba install -y ipython ipykernel jupyter jupyter-book | |
RUN mamba install -y gdal rasterio geopandas matplotlib numpy scipy pytables numba feather-format pandas pip pybind11 xtensor xtensor-python fiona utm pyproj cartopy folium h5py descartes | ||
|
||
# Add viztools and paramselector | ||
RUN pip install lsdviztools==0.4.8 lsdttparamselector | ||
RUN pip install lsdviztools==0.4.11 lsdttparamselector | ||
|
||
# Add lsdtopytools | ||
RUN mamba install -y lsdtt-xtensor-python | ||
#RUN mamba install -y lsdtt-xtensor-python | ||
|
||
# Add lsdtopytools | ||
RUN mamba install -y lsdtopytools | ||
#RUN mamba install -y lsdtopytools | ||
|
||
# Set the working directory | ||
WORKDIR /LSDTopoTools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters