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 48a4728 commit 59b1a40Copy full SHA for 59b1a40
justfile
@@ -13,6 +13,8 @@ build-and-push:
13
#!/usr/bin/env bash
14
echo "Building and pushing the Docker image"
15
RELEASE_VERSION=$(git describe --tags --abbrev=0)
16
+ echo "Release version: $RELEASE_VERSION"
17
+ RELEASE_VERSION=${RELEASE_VERSION:1}
18
docker buildx create --name mybuilder --platform linux/amd64,linux/arm64 --use
19
docker buildx build --sbom=true --provenance=true --push --platform linux/amd64,linux/arm64 -t mbari/fastapi-tator:$RELEASE_VERSION --build-arg IMAGE_URI=mbari/fastapi-tator:$RELEASE_VERSION -f Dockerfile .
20
0 commit comments