Skip to content
Closed
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
5 changes: 4 additions & 1 deletion stack/lab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ RUN apt-get update --yes && \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install aiidalab package
ARG AIIDA_VERSION

# Install aiidalab and aiida-core.atomic_tools
ARG AIIDALAB_VERSION=22.08.0
RUN mamba install --yes \
aiidalab=${AIIDALAB_VERSION} \
aiida-core.atomic_tools=${AIIDA_VERSION} \
&& mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
Expand Down