From 888c235b27af3dfa314b4f3ab27d1731d80e5020 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Tue, 8 Apr 2025 13:04:26 -0400 Subject: [PATCH] Updates Dockerfile path in pipeline config Updates the Azure pipeline configuration to reference the relocated Dockerfile. This ensures the pipeline correctly identifies and builds the Docker image, preventing build failures. --- .../Dockerfile.playwright => Dockerfile.playwright | 0 playwright-tests/azure-pipelines-automated-testing.yml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename playwright-tests/Dockerfile.playwright => Dockerfile.playwright (100%) diff --git a/playwright-tests/Dockerfile.playwright b/Dockerfile.playwright similarity index 100% rename from playwright-tests/Dockerfile.playwright rename to Dockerfile.playwright diff --git a/playwright-tests/azure-pipelines-automated-testing.yml b/playwright-tests/azure-pipelines-automated-testing.yml index 78de01550..d8619320c 100644 --- a/playwright-tests/azure-pipelines-automated-testing.yml +++ b/playwright-tests/azure-pipelines-automated-testing.yml @@ -40,7 +40,7 @@ stages: displayName: 'Build Docker Image' inputs: command: build - dockerfile: playwright-tests/Dockerfile.playwright + dockerfile: Dockerfile.playwright repository: $(dockerImageName) tags: $(imageTag) arguments: '--no-cache --pull' @@ -107,7 +107,7 @@ stages: displayName: 'Build Docker Image' inputs: command: build - dockerfile: playwright-tests/Dockerfile.playwright + dockerfile: Dockerfile.playwright repository: $(dockerImageName) tags: $(imageTag) arguments: '--no-cache --pull'