Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hongee committed Oct 6, 2018
2 parents 41c6017 + 954f3e4 commit 18af8db
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @dailybruin/internal-sites-editors @hongee
17 changes: 17 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Docker image
# Build a Docker image to deploy, run, or push to a container registry.
# Add steps that use Docker Compose, tag images, push to a registry, run an image, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker

pool:
vmImage: 'Ubuntu 16.04'

variables:
imageName: 'dailybruin/kerckhoff:$(build.buildId)'

steps:
- script: |
docker login -u $(dockerId) -p $pswd
docker build -f Dockerfile -t $(imageName) .
docker push $(imageName)
displayName: 'Build and push Docker Image'

0 comments on commit 18af8db

Please sign in to comment.