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

1
Cargo.lock generated
View File

@@ -3951,6 +3951,7 @@ dependencies = [
"chrono",
"domain",
"serde",
"uuid",
]
[[package]]

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"