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.
12 lines
228 B
12 lines
228 B
7 years ago
|
$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
|