mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-27 05:35:28 -04:00
21 lines
422 B
Text
21 lines
422 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_performance.sh .
|
|
RUN ./install_performance.sh "local"
|
|
|
|
COPY ./scripts/ci_entrypoint.sh \
|
|
./scripts/test_performance.sh \
|
|
./scripts/plot_performance.py \
|
|
./
|
|
|
|
CMD ["./ci_entrypoint.sh", "./test_performance.sh", "local"]
|
|
|
|
#EOF
|