tcp-cal/build.sh
2024-11-20 13:53:26 +08:00

13 lines
221 B
Bash

#!/bin/bash
IMAGE=mereith/tcp-cal
VERSION=v0.0.1
echo "Building Docker image: ${IMAGE}:${VERSION}"
docker buildx build \
--platform linux/amd64 \
--tag ${IMAGE}:${VERSION} \
--tag ${IMAGE}:latest \
--push \
.