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