10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
IMAGE="${IMAGE:-registry.gabrielkaszewski.dev/k-notes:latest}"
|
|
|
|
docker buildx build --platform linux/amd64 \
|
|
-t "$IMAGE" --push .
|
|
|
|
echo "pushed $IMAGE"
|