-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazure-pipelines.yml
55 lines (49 loc) · 1.41 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
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- main
pr:
- main
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: 'konmaripocontainerregistry_2023'
imageRepository: 'konmaripoweb'
containerRegistry: 'konmaripocontainerregistry.azurecr.io'
buildContextLocation: 'src/'
dockerfilePath: 'src/Dockerfile'
tag: '$(Build.BuildId)'
#tag: 'release'
# Agent VM image name
vmImageName: 'ubuntu-latest'
stages:
- stage: Build
displayName: Build and push stage
jobs:
- job: Build
displayName: Build
pool:
vmImage: $(vmImageName)
steps:
- task: Docker@2
displayName: Build an image
inputs:
command: build
dockerfile: $(dockerfilePath)
repository: $(imageRepository)
containerRegistry: $(dockerRegistryServiceConnection)
buildContext: "$(buildContextLocation)"
tags: |
$(tag)
$(imageRepository)
- task: Docker@2
displayName: Push an image to container registry
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
inputs:
containerRegistry: $(dockerRegistryServiceConnection)
repository: $(imageRepository)
command: push
tags: |
$(tag)