From 99ab993f2f1ad6a258ed76300ba00c17e42d544d Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Sun, 29 Jan 2023 21:52:17 -0800 Subject: [PATCH] remove azure pipelines script. --- azure-pipelines.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index b6d9a4ea..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Docker -# Build a Docker image -# https://docs.microsoft.com/azure/devops/pipelines/languages/docker - -trigger: -- main - -resources: -- repo: self - -variables: - tag: '$(Build.BuildId)' - -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)/Dockerfile' - tags: | - $(tag)