Skip to content

Commit

Permalink
Merge pull request #442 from Gontier-Julien/docker-buildx
Browse files Browse the repository at this point in the history
Use docker buildx, since docker build is deprecated.
  • Loading branch information
troglobit authored Aug 9, 2023
2 parents 5745955 + 0f5b386 commit 3ca9721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
run: docker buildx build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
Expand Down

0 comments on commit 3ca9721

Please sign in to comment.