cp2k/tools/docker/Dockerfile.test_pdbg
2020-11-23 20:01:07 +01:00

18 lines
386 B
Text

ARG TOOLCHAIN=cp2k/toolchain:latest
FROM ${TOOLCHAIN}
# author: Ole Schuett
WORKDIR /workspace
COPY ./scripts/install_basics.sh .
RUN ./install_basics.sh
COPY ./scripts/install_regtest.sh .
RUN ./install_regtest.sh local pdbg
ENV USE_STABLE_DBCSR=1
COPY ./scripts/ci_entrypoint.sh ./scripts/test_regtest.sh ./
CMD ["./ci_entrypoint.sh", "./test_regtest.sh", "local", "pdbg"]
#EOF