From 2fb505feeab5698cdbbb35d1f011df1ba46dbbdc Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" Date: Sat, 2 Feb 2019 17:54:09 +0000 Subject: [PATCH] ci: try azure pipelines --- azure-pipelines.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..d4032b86d --- /dev/null +++ b/azure-pipelines.yml @@ -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 + +trigger: +- master + +pool: + vmImage: 'Ubuntu-16.04' + +variables: + imageName: 'your-container-image-name:$(build.buildId)' + +steps: +- script: docker build -f Dockerfile -t $(imageName) . + displayName: 'docker build'