Skip to content

Commit 98dd527

Browse files
committed
Update Dockerfile path in Minikube deployment workflow
Modified the Docker build command to use the Dockerfile located in the `pipeline` directory instead of the root. This ensures the correct Dockerfile is referenced during the build process within the deployment pipeline.
1 parent 5a98359 commit 98dd527

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-minikube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: |
1717
export SHELL=/bin/bash
1818
eval $(minikube -p minikube docker-env)
19-
docker build -f ./Dockerfile -t devopshint/node-app:latest .
19+
docker build -f ./pipeline/Dockerfile -t devopshint/node-app:latest .
2020
echo -n "verifying images:"
2121
docker images
2222
- name: Deploy to minikube

0 commit comments

Comments
 (0)