summaryrefslogtreecommitdiffstats
path: root/docker/build-vespa-image.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/build-vespa-image.sh')
-rwxr-xr-xdocker/build-vespa-image.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/docker/build-vespa-image.sh b/docker/build-vespa-image.sh
deleted file mode 100755
index 1680f4c057a..00000000000
--- a/docker/build-vespa-image.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-set -e
-
-if [ $# -ne 1 ]; then
- echo "Usage: $0 <vespa version>"
- exit 1
-fi
-
-DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
-cd $DIR
-
-VESPA_VERSION=$1
-DOCKER_IMAGE=vesparun
-
-docker build -t "$DOCKER_IMAGE":"$VESPA_VERSION" --build-arg VESPA_VERSION="$VESPA_VERSION" -f run/Dockerfile .