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.
This commit is contained in:
maguire-arman 2025-04-08 13:04:26 -04:00
parent 6a2f23b87a
commit 888c235b27
2 changed files with 2 additions and 2 deletions

View file

@ -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'