Skip to content

Commit 10e0d6a

Browse files
committed
Install aiida-core[atomic_tools]
1 parent 0d377de commit 10e0d6a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

stack/base/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@ LABEL maintainer="AiiDAlab Team <[email protected]>"
55

66
USER root
77

8-
# build-essential: includes GCC compilers that are needed when building
9-
# pip packages from sources, which often seems to happen for pymatgen:
10-
# https://pymatgen.org/installation.html#installation-tips-for-optional-libraries
118
# rsync: needed to support the new AiiDA backup command
129
# povray: rendering engine used in aiidalab-widgets-base
13-
ENV EXTRA_APT_PACKAGES "curl rsync build-essential"
10+
ENV EXTRA_APT_PACKAGES "curl povray rsync"
1411

1512
# For ARM64 we need to install erlang as it is not available on conda-forge
1613
# (this is needed later as rabbitmq dependency in base-with-services image,
1714
# but we install it here so that we don't have to invoke apt multiple times.
15+
# We also install build-essential, which includes GCC compilers that are needed when building
16+
# pip packages from sources, which is more often needed on ARM64
1817
ARG TARGETARCH
1918
RUN if [ "$TARGETARCH" = "arm64" ]; then \
20-
EXTRA_APT_PACKAGES="erlang libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}"; \
19+
EXTRA_APT_PACKAGES="erlang build-essential libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}"; \
2120
fi;\
2221
apt-get update --yes && \
2322
apt-get install --yes --no-install-recommends ${EXTRA_APT_PACKAGES} && \
@@ -51,7 +50,7 @@ COPY pip.conf /etc/pip.conf
5150
# Install aiida-core and other shared requirements.
5251
RUN mamba update -y pip mamba zstandard async_generator certipy && \
5352
mamba install --yes \
54-
aiida-core==${AIIDA_VERSION} \
53+
aiida-core.atomic_tools==${AIIDA_VERSION} \
5554
mamba-bash-completion \
5655
&& mamba clean --all -f -y && \
5756
fix-permissions "${CONDA_DIR}"

0 commit comments

Comments
 (0)