diff --git a/.github/workflows/build-push-ghcr.yml b/.github/workflows/build-push-ghcr.yml index 49fd3d8..a9921d7 100644 --- a/.github/workflows/build-push-ghcr.yml +++ b/.github/workflows/build-push-ghcr.yml @@ -15,6 +15,8 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build the hello-docker Docker image run: | - docker build . --tag ghcr.io/deselikem/hello-docker-gcr-demo:latest - docker run ghcr.io/deselikem/hello-docker-gcr-demo:latest - docker push ghcr.io/deselikem/hello-docker-gcr-demo:latest \ No newline at end of file + container_img = ghcr.io/deselikem/hello-docker-gcr-demo + echo $container_img + docker build . -f Dockerfile.base --tag ghcr.io/deselikem/hello-docker-gcr-demo:latest + #docker run ghcr.io/deselikem/hello-docker-gcr-demo:latest + #docker push ghcr.io/deselikem/hello-docker-gcr-demo:latest \ No newline at end of file