mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
Compare commits
1 Commits
81fd8ce6f6
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 25021d1b20 |
40
azure-pipelines.yml
Normal file
40
azure-pipelines.yml
Normal file
@ -0,0 +1,40 @@
|
||||
# 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: 'c6da80c0-7d65-4b93-9203-3b91c4f6b5dc'
|
||||
imageRepository: 'reactiveresume'
|
||||
containerRegistry: 'reactiveresume.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
|
||||
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)
|
||||
arguments: '--platform linux/amd64,linux/arm64'
|
||||
tags: |
|
||||
$(tag)
|
||||
Reference in New Issue
Block a user