You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
$ErrorActionPreference = 'Stop';
|
|
$files = ""
|
|
Write-Host Starting build
|
|
|
|
if ($isWindows) {
|
|
docker build --pull -t whoami -f Dockerfile.windows .
|
|
} else {
|
|
docker build -t whoami --build-arg "arch=$env:ARCH" .
|
|
}
|
|
|
|
docker images
|