-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
43 lines (37 loc) · 1.08 KB
/
azure-pipelines.yml
File metadata and controls
43 lines (37 loc) · 1.08 KB
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
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- azure-deploy
resources:
- repo: self
pool:
name: borilocalpool
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: 'c3bb4453-4c6d-49c6-8191-5e4222cc7aee'
imageRepository: 'energy-utility-frontend-image'
containerRegistry: 'containerregistryborifazakas30411.azurecr.io'
dockerfilePath: '$(Build.SourcesDirectory)/Dockerfile'
tag: 'latest'
# Agent VM image name
vmImageName: 'bori-VirtualBox'
stages:
- stage: Build
displayName: Build and push stage
jobs:
- job: Build
displayName: Build
pool:
name: borilocalpool
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)