13 lines
221 B
Bash
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 \
|
|
. |