We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e64487 commit ee009d0Copy full SHA for ee009d0
dev/docker.sh
@@ -42,15 +42,15 @@ if [[ -n $OPENGROK_TAG ]]; then
42
TAGS="$VERSION $VERSION_SHORT latest"
43
44
echo "Building docker image for release ($TAGS)"
45
- docker build \
+ docker buildx build \
46
-t $IMAGE:$VERSION \
47
-t $IMAGE:$VERSION_SHORT \
48
-t $IMAGE:latest .
49
else
50
TAGS="master"
51
52
echo "Building docker image for master"
53
- docker build -t $IMAGE:master .
+ docker buildx build -t $IMAGE:master .
54
fi
55
56
#
@@ -93,4 +93,4 @@ if [ -n "$DOCKER_PASSWORD" -a -n "$DOCKER_USERNAME" -a -n "$TAGS" ]; then
93
echo "Pushing Docker image for tag $tag"
94
docker push $IMAGE:$tag
95
done
96
-fi
+fi
0 commit comments