-
Notifications
You must be signed in to change notification settings - Fork 124
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
Showing
6 changed files
with
29 additions
and
61 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 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
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
FROM mambaorg/micromamba:latest | ||
# Define the base image for the task | ||
ARG base_image=mambaorg/micromamba:latest | ||
FROM $base_image | ||
|
||
# Copy the requirements into the container | ||
COPY --chown=$MAMBA_USER:$MAMBA_USER requirements /tmp/requirements/ | ||
|
||
# Install requirements, drop in an update for good measure | ||
RUN micromamba install -y -n base -f /tmp/requirements/env_climada.yml && \ | ||
micromamba install -y -n base -f /tmp/requirements/env_developer.yml && \ | ||
micromamba update -y -n base && \ | ||
micromamba clean --all --yes |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ dependencies: | |
- ipython | ||
- ipykernel | ||
- mccabe>=0.6 | ||
- make | ||
- pandoc | ||
- sphinx>=2.0 | ||
- pip | ||
|