Skip to content

Commit

Permalink
Merge pull request #2 from JoachimVeulemans/azure-pipelines-pr-candidate
Browse files Browse the repository at this point in the history
Add Azure pipelines
  • Loading branch information
JoachimVeulemans authored Jun 2, 2020
2 parents 85d67de + ec5c79a commit d5a0e6f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions azure-pipelines-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# React - CD

trigger:
- master

pool:
vmImage: 'ubuntu-latest'

steps:
- task: Docker@2
inputs:
containerRegistry: 'DockerHubJoachim'
repository: 'imslavko/image-labeling-tool'
command: 'buildAndPush'
Dockerfile: 'Dockerfile'
tags: 'latest'
16 changes: 16 additions & 0 deletions azure-pipelines-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# React - CI

trigger:
- master

pool:
vmImage: 'ubuntu-latest'

steps:
- task: Docker@2
inputs:
containerRegistry: 'DockerHubJoachim'
repository: 'imslavko/image-labeling-tool'
command: 'build'
Dockerfile: 'Dockerfile'
tags: 'latest'

0 comments on commit d5a0e6f

Please sign in to comment.