mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 01:49:06 +08:00
24d884e1b8
Also tells Docker to invalidate caches so that our apt-get update attempt actually does something.
40 lines
1.1 KiB
PowerShell
40 lines
1.1 KiB
PowerShell
# Create Docker image for Android
|
|
|
|
$Location = 'westus3'
|
|
$Date = (Get-Date -Format 'yyyy-MM-dd')
|
|
$ResourceGroupName = "And-Registry"
|
|
$ContainerRegistryName = "AndContainerRegistry"
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
Get-AzResourceGroup -Name $ResourceGroupName -ErrorVariable error -ErrorAction SilentlyContinue
|
|
if ($error) {
|
|
New-AzResourceGroup -Name $ResourceGroupName -Location $Location
|
|
New-AzContainerRegistry -ResourceGroupName $ResourceGroupName -Name $ContainerRegistryName -EnableAdminUser -Sku Basic
|
|
}
|
|
|
|
$registry = Get-AzContainerRegistry -ResourceGroupName $ResourceGroupName -Name $ContainerRegistryName
|
|
Connect-AzContainerRegistry -Name $registry.Name
|
|
|
|
$imageName = "vcpkg-android"
|
|
Push-Location $PSScriptRoot
|
|
try {
|
|
docker builder prune -f --filter "until=24h"
|
|
|
|
docker build . -t $imageName
|
|
|
|
$remote = [string]::Format('andcontainerregistry.azurecr.io/{0}:{1}', $imageName, $Date)
|
|
docker tag $imageName $remote
|
|
|
|
docker push $remote
|
|
|
|
#removes from local environment
|
|
docker rmi --force $remote $imageName
|
|
|
|
# pulls and runs ...
|
|
docker logout
|
|
} finally {
|
|
Pop-Location
|
|
}
|
|
|
|
Write-Host "Remote: $remote"
|