mirror of https://github.com/dapr/samples.git
16 lines
472 B
PowerShell
16 lines
472 B
PowerShell
Write-Host "Building and pushing batch-processor image to ACR"
|
|
|
|
$acrLoginServer = "<acr-login-server>"
|
|
$acrName = "<acr-name>"
|
|
|
|
# Log in to the registry
|
|
az acr login --name $acrName
|
|
|
|
# Build an image from a Dockerfile
|
|
docker build -t batch-processor:v1 $PSScriptRoot/../batchProcessor
|
|
|
|
# Tag the image
|
|
docker tag batch-processor:v1 $acrLoginServer/batch-processor:v1
|
|
|
|
# Push the image to the Azure Container Registry instance
|
|
docker push $acrLoginServer/batch-processor:v1 |