Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions devops/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ stages:
- stage: Build
displayName: Build Docker Images (CI Only)
jobs:

- job: BuildClient
displayName: Build Client Image
steps:
- script: |
- powershell: |
$img = "$(clientImage)"
$ctx = "$(clientCtx)"
$df = Join-Path $ctx "Dockerfile"
Expand All @@ -50,7 +51,7 @@ stages:
- job: BuildAPI
displayName: Build API Image
steps:
- script: |
- powershell: |
$img = "$(apiImage)"
$ctx = "$(apiCtx)"
$df = Join-Path $ctx "Dockerfile"
Expand All @@ -66,4 +67,4 @@ stages:
-t "$img:latest" `
-f "$df" `
"$ctx"
displayName: Build API (with local cache)
displayName: Build API (with local cache)
Loading