build.ps1 273 B

1234567891011
  1. $ErrorActionPreference = "Inquire"
  2. $srcPath = (Join-Path $PSScriptRoot "src")
  3. Push-Location (Join-Path $srcPath "RunnersMeet.Client")
  4. ng build --configuration production
  5. Pop-Location
  6. Push-Location $srcPath
  7. docker build -t executry/runners-meet .
  8. Pop-Location