-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
73 lines (66 loc) · 2.42 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger: none
pr: none
resources:
- repo: self
variables:
imageRepositoryApi: 'hfp-analytics/api'
imageRepositoryImporter: 'hfp-analytics/importer'
containerRegistry: 'hfpanalyticsregistry.azurecr.io'
dockerfilePathApi: '$(Build.SourcesDirectory)/Dockerfile.api_deploy'
dockerfilePathImporter: '$(Build.SourcesDirectory)/Dockerfile.importer_deploy'
# Agent VM image name
vmImageName: 'ubuntu-latest'
stages:
- stage: Build
displayName: Build and push
jobs:
- job: Build
displayName: Build
pool:
vmImage: $(vmImageName)
steps:
- task: Docker@2
displayName: Build api to container registry
inputs:
command: build
repository: $(imageRepositoryApi)
dockerfile: $(dockerfilePathApi)
containerRegistry: Azure Container Registry Connection # Service connection created in Azure with this name
# imageTag (dev/test/prod): a pipeline variable
tags: |
$(imageTag)
arguments: '--build-arg BUILD_VERSION=$(build.buildNumber)'
- task: Docker@2
displayName: Push api to container registry
inputs:
command: push
repository: $(imageRepositoryApi)
dockerfile: $(dockerfilePathApi)
containerRegistry: Azure Container Registry Connection # Service connection created in Azure with this name
# imageTag (dev/test/prod): a pipeline variable
tags: |
$(imageTag)
- task: Docker@2
displayName: Build importer to container registry
inputs:
command: build
repository: $(imageRepositoryImporter)
dockerfile: $(dockerfilePathImporter)
containerRegistry: Azure Container Registry Connection # Service connection created in Azure with this name
# imageTag (dev/test/prod): a pipeline variable
tags: |
$(imageTag)
arguments: '--build-arg BUILD_VERSION=$(build.buildNumber)'
- task: Docker@2
displayName: Push importer to container registry
inputs:
command: push
repository: $(imageRepositoryImporter)
dockerfile: $(dockerfilePathImporter)
containerRegistry: Azure Container Registry Connection # Service connection created in Azure with this name
# imageTag (dev/test/prod): a pipeline variable
tags: |
$(imageTag)