summaryrefslogtreecommitdiff
path: root/bin/docker-build
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docker-build')
-rwxr-xr-xbin/docker-build5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/docker-build b/bin/docker-build
index 8b07e0e..39a9160 100755
--- a/bin/docker-build
+++ b/bin/docker-build
@@ -6,10 +6,7 @@ cd "$(dirname "$0")/.."
if command -v docker; then
IMAGE_NAME=${IMAGE_NAME:-$(basename "$PWD"):latest}
- TOOLS_IMAGE=${TOOLS_IMAGE:-$(basename "$PWD")/tools:master}
-
- docker build -t "$TOOLS_IMAGE" -f Dockerfile.tools --pull .
- docker build --build-arg TOOLS_IMAGE="$TOOLS_IMAGE" -t "$IMAGE_NAME" .
+ docker build -t "$IMAGE_NAME" .
else
echo "Install docker: https://docs.docker.com/engine/installation/"
exit 1