feat: add uuid dependency to Cargo.lock and create deploy script

This commit is contained in:
2026-05-08 13:39:44 +02:00
parent a282539151
commit 4ea5f4cecf
2 changed files with 8 additions and 0 deletions

7
deploy.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/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"