From cbf2edbb046e521ee421853c2c10fc8256a3983a Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 24 Sep 2019 20:10:19 -0500 Subject: [PATCH] specify repo in build step --- azure-pipelines.web.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.web.yaml b/azure-pipelines.web.yaml index c3c7c61d8..40e8fe660 100644 --- a/azure-pipelines.web.yaml +++ b/azure-pipelines.web.yaml @@ -8,12 +8,13 @@ steps: - task: Docker@2 displayName: build inputs: + repository: "docker.pkg.github.com/collinbarrett/filterlists" command: "build" Dockerfile: "src/FilterLists.Web/Dockerfile" buildContext: "." tags: | - "docker.pkg.github.com/collinbarrett/filterlists:latest" - "docker.pkg.github.com/collinbarrett/filterlists:$(Build.BuildId)" + latest + $(Build.BuildId) - task: Docker@2 displayName: push