-
Notifications
You must be signed in to change notification settings - Fork 39
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
Javier Vegas-Regidor
authored
Jun 19, 2020
1 parent
da937c7
commit 4a8776f
Showing
6 changed files
with
127 additions
and
90 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
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
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# To build this container, go to ESMValCore root folder and execute : | ||
# docker build -t ${TAG_OF_YOUR_CHOICE} . -f docker/Dockerfile.dev | ||
FROM continuumio/miniconda3 | ||
|
||
# update the conda packages | ||
RUN conda update -y conda pip | ||
|
||
# Copy source | ||
COPY . /home/root/source | ||
WORKDIR /home/root/source | ||
|
||
# Install | ||
RUN apt-get update | ||
RUN conda env update --name base --file environment.yml | ||
RUN pip install -e .[test] | ||
RUN pip uninstall esmvalcore -y | ||
|
||
# Clean up | ||
RUN rm -r /home/root/source | ||
RUN conda clean --all -y |
This file was deleted.
Oops, something went wrong.
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