From 4890501512d1087bc0e3e89c702871e441c5da00 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 14 May 2026 15:46:53 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20add=20deploy.sh=20=E2=80=94=20build=20?= =?UTF-8?q?amd64=20image=20and=20push=20to=20registry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..ce39845 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +set -euo pipefail + +IMAGE="registry.gabrielkaszewski.dev/thoughts:latest" + +docker buildx build --platform linux/amd64 \ + -t "$IMAGE" --push . + +echo "pushed $IMAGE"