mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 22:25:32 -04:00
17 lines
331 B
Text
17 lines
331 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_manual.sh .
|
|
RUN ./install_manual.sh
|
|
|
|
COPY ./scripts/ci_entrypoint.sh ./scripts/test_manual.sh ./
|
|
CMD ["./ci_entrypoint.sh", "./test_manual.sh"]
|
|
|
|
#EOF
|