File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ USER root
1010# https://pymatgen.org/installation.html#installation-tips-for-optional-libraries
1111# rsync: needed to support the new AiiDA backup command
1212# povray: rendering engine used in aiidalab-widgets-base
13- ENV EXTRA_APT_PACKAGES "curl rsync build-essential "
13+ ENV EXTRA_APT_PACKAGES "curl rsync"
1414
1515# For ARM64 we need to install erlang as it is not available on conda-forge
1616# (this is needed later as rabbitmq dependency in base-with-services image,
1717# but we install it here so that we don't have to invoke apt multiple times.
1818ARG TARGETARCH
1919RUN if [ "$TARGETARCH" = "arm64" ]; then \
20- EXTRA_APT_PACKAGES="erlang libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}" ; \
20+ EXTRA_APT_PACKAGES="erlang build-essentials libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}" ; \
2121 fi;\
2222 apt-get update --yes && \
2323 apt-get install --yes --no-install-recommends ${EXTRA_APT_PACKAGES} && \
@@ -48,7 +48,7 @@ ENV PIP_USER 1
4848# Install aiida-core and other shared requirements.
4949RUN mamba update -y pip zstandard && \
5050 mamba install --yes \
51- aiida-core==${AIIDA_VERSION} \
51+ aiida-core.atomic_tools ==${AIIDA_VERSION} \
5252 mamba-bash-completion \
5353 && mamba clean --all -f -y && \
5454 fix-permissions "${CONDA_DIR}" && \
You can’t perform that action at this time.
0 commit comments