mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-27 05:35:28 -04:00
12 lines
215 B
Bash
12 lines
215 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
# author: Ole Schuett
|
||
|
|
|
||
|
|
set -x
|
||
|
|
|
||
|
|
SHORT_SHA=$(git rev-parse --short HEAD)
|
||
|
|
docker build --build-arg "REVISION=${SHORT_SHA}" -t cp2k-precommit .
|
||
|
|
docker run --rm -p127.0.0.1:8080:8080 cp2k-precommit
|
||
|
|
|
||
|
|
#EOF
|