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:
parent
6a2f23b87a
commit
888c235b27
2 changed files with 2 additions and 2 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue