-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-and-push.yml
More file actions
42 lines (37 loc) · 1006 Bytes
/
build-and-push.yml
File metadata and controls
42 lines (37 loc) · 1006 Bytes
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
# Runs on master branch of our github repo
trigger:
- master
# Define variables
variables:
tag: '$(Build.BuildId)'
stages:
- stage: Build
displayName: Build Stage
jobs:
- job: Build
displayName: Build Job
pool:
vmImage: 'ubuntu-latest'
steps:
# Build docker image and push to ACR
- task: Docker@2
inputs:
containerRegistry: 'manual-devops-sc'
repository: 'python-restapi1'
command: 'buildAndPush'
Dockerfile: '**/Dockerfile'
tags: |
$(tag)
# Copy files from a source folder to target folder
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.DefaultWorkingDirectory)'
Contents: '**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
Overwrite: true
# Publish Artifacts to Azure Pipelines
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: python-restapi1
publishLocation: 'Container'