mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 14:15:19 -04:00
17 lines
363 B
Text
17 lines
363 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 psmp
|
|
|
|
COPY ./scripts/ci_entrypoint.sh ./scripts/test_regtest.sh ./
|
|
CMD ["./ci_entrypoint.sh", "./test_regtest.sh", "local", "psmp"]
|
|
|
|
#EOF
|