forked from benc-uk/python-demoapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
51 lines (45 loc) · 1.44 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
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- master
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: 'cd65211a-ef65-443a-beda-230dff997417'
imageRepository: 'az-devops-python-demo'
containerRegistry: 'chathumalacr.azurecr.io'
dockerfilePath: '$(Build.SourcesDirectory)/Dockerfile'
tag: '$(Build.BuildId)'
# Agent VM image name
vmImageName: 'ubuntu-latest'
stages:
- stage: Build
displayName: Build and push stage
jobs:
- job: Build
displayName: Build and push
pool:
vmImage: $(vmImageName)
steps:
- task: Docker@2
displayName: Build and push an image to container registry
inputs:
command: buildAndPush
repository: $(imageRepository)
dockerfile: $(dockerfilePath)
containerRegistry: $(dockerRegistryServiceConnection)
tags: |
$(tag)
- stage: Deploy
displayName: Deploy and Update Azure Web App stage
jobs:
- job: Deploy
displayName: Deploy and Update Azure Web App
steps:
- task: AzureWebAppContainer@1
inputs:
azureSubscription: 'Chathumal Test Subscription (f934be49-91f8-43f0-a2f5-1ca8d0725917)'
appName: 'azure-devops-sample-app'
containers: 'chathumalacr.azurecr.io/az-devops-python-demo:$(tag)'