Sync CI docker files (launch script name)

This commit is contained in:
Matthias Krack 2026-02-09 19:04:04 +01:00
parent 4c552869df
commit 026a55ffeb
2 changed files with 4 additions and 9 deletions

View file

@ -25,11 +25,8 @@ RUN /bin/bash -o pipefail -c "source ./make_cp2k.sh -cv ${CP2K_VERSION} -dlc -j$
FROM "${BASE_IMAGE}" AS install_cp2k
# Install required packages
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \
g++ \
gcc \
gfortran \
g++ gcc gfortran \
python3 \
&& rm -rf /var/lib/apt/lists/*
@ -50,5 +47,5 @@ COPY --from=build_cp2k /opt/cp2k/benchmarks/CI ./benchmarks/CI
# Create entrypoint and finalise container build
WORKDIR /mnt
ENTRYPOINT ["/opt/cp2k/install/bin/entrypoint.sh"]
CMD ["cp2k", "--help"]
ENTRYPOINT ["/opt/cp2k/install/bin/launch"]
CMD ["cp2k", "--help", "--version"]

View file

@ -16,9 +16,7 @@ RUN apt-get update -qq && apt-get install -qq --no-install-recommends \
bzip2 \
ca-certificates \
cmake \
g++ \
gcc \
gfortran \
g++ gcc gfortran \
git \
gnupg \
libssh-dev \