summaryrefslogtreecommitdiff
path: root/.expeditor/update_dockerfile.sh
diff options
context:
space:
mode:
Diffstat (limited to '.expeditor/update_dockerfile.sh')
-rwxr-xr-x.expeditor/update_dockerfile.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/.expeditor/update_dockerfile.sh b/.expeditor/update_dockerfile.sh
new file mode 100755
index 0000000000..9ae260fcb8
--- /dev/null
+++ b/.expeditor/update_dockerfile.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+# This file updates the default VERSION build argument in the Dockerfile to the
+# VERSION passed in to the file via environment variables.
+
+set -evx
+
+sed -i -r "s/^ARG VERSION=.+/ARG VERSION=${VERSION}/" Dockerfile