7 lines
202 B
PowerShell
7 lines
202 B
PowerShell
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
||
|
Push-Location "$dir"
|
||
|
$d = "docker/windows"
|
||
|
Copy-Item $d/Dockerfile .
|
||
|
docker build -t "oppai-ng:windows" .
|
||
|
Remove-Item Dockerfile
|
||
|
Pop-Location
|