Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"default": "2.5.1"
},
"AIIDALAB_VERSION": {
"default": "23.03.2"
"default": "24.07.0"
},
"AIIDALAB_HOME_VERSION": {
"default": "23.03.1"
Expand Down
7 changes: 3 additions & 4 deletions stack/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@ ENV PIP_CONSTRAINT /opt/requirements.txt
# Ensure that pip installs packages to ~/.local by default
ENV PIP_USER 1

# Upgrade pip to latest
RUN mamba update -y pip && mamba clean --all -f -y

# Upgrade pip and mamba to latest
# Install aiida-core and other shared requirements.
RUN mamba install --yes \
RUN mamba update -y pip && \
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Combining mamba update and mamba install in a single RUN should speed up the build slightly since we need to download the conda-forge package index only once.

mamba install --yes \
aiida-core==${AIIDA_VERSION} \
mamba-bash-completion \
&& mamba clean --all -f -y && \
Expand Down