diff options
Diffstat (limited to 'docker/features/hooks/post_checkout')
-rw-r--r-- | docker/features/hooks/post_checkout | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/features/hooks/post_checkout b/docker/features/hooks/post_checkout new file mode 100644 index 000000000..20a6d4b95 --- /dev/null +++ b/docker/features/hooks/post_checkout @@ -0,0 +1,6 @@ +#!/bin/bash + +from="${DOCKER_REPO%/*}/functest-core" +sed -i "s|^FROM.*$|FROM ${from}|" Dockerfile + +exit $? |