Files
budget/build-budget-image.ps1
T
Spencer Twaddle 9941ecc1a9 Add Docker build and push script
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-25 08:11:25 -05:00

5 lines
137 B
PowerShell

$image = "docker.stwaddle.com/budget:latest"
docker build -t $image .
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
docker push $image