8 lines
183 B
Bash
Executable File
8 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
IMAGE="registry.gabrielkaszewski.dev/movies-diary:latest"
|
|
|
|
docker buildx build --platform linux/amd64 -t "$IMAGE" --push .
|
|
echo "pushed $IMAGE"
|