From f5fbac54cb9bd4fac468c4ade1774f8fd791bd2a Mon Sep 17 00:00:00 2001 From: jhbritton-RSK <54076138+jhbritton-RSK@users.noreply.github.com> Date: Tue, 28 Mar 2023 11:31:43 +0100 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..f0d690d --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,29 @@ +# Docker +# Build a Docker image +# https://docs.microsoft.com/azure/devops/pipelines/languages/docker + +trigger: +- master + +resources: +- repo: self + +variables: + tag: '6.1.7' + +stages: +- stage: Build + displayName: Build image + jobs: + - job: Build + displayName: Build + pool: + vmImage: ubuntu-latest + steps: + - task: Docker@2 + displayName: Build an image + inputs: + command: build + dockerfile: '$(Build.SourcesDirectory)/Rsk.Samples.IdentityServer.AdminUiIntegration/Dockerfile' + tags: | + $(tag)