-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
47 lines (42 loc) · 1.32 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
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- main
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: '68746a8d-daf3-49fe-8c71-0f73baa1e73c'
imageRepository: 'server'
containerRegistry: 'braikup.azurecr.io'
dockerfilePath: '$(Build.SourcesDirectory)/Dockerfile'
tag: '$(Build.BuildId)'
# Agent VM image name
vmImageName: 'ubuntu-latest'
stages:
- stage: Build
displayName: Build stage
jobs:
- job: Build
displayName: Build
pool:
vmImage: $(vmImageName)
steps:
- script: az acr login --name braikup --username $(registryUserName) --password $(registryPassword)
displayName: 'Login to ACR'
- task: Docker@2
inputs:
command: 'build'
repository: 'braikup.azurecr.io/server'
dockerfile: '**/Dockerfile'
buildContext: '$(Build.Repository.LocalPath)'
arguments: ''
tags: |
$(tag)
- task: Docker@2
inputs:
command: 'push'
repository: 'braikup.azurecr.io/server'
tags: |
$(tag)