Add Docker build and push script

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Spencer Twaddle
2026-04-25 08:11:25 -05:00
parent 45f921bb71
commit 9941ecc1a9
+4
View File
@@ -0,0 +1,4 @@
$image = "docker.stwaddle.com/budget:latest"
docker build -t $image .
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
docker push $image