Files
budget/build-image.ps1
T
2026-05-04 17:42:44 -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