Skip to content

Commit

Permalink
do not use buildx to use local distribution image as base image
Browse files Browse the repository at this point in the history
  • Loading branch information
josedev-union committed Apr 29, 2024
1 parent 5f1e4bd commit 51e4eae
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@ jobs:
type=ref,event=tag
type=raw,value=${{ steps.taggen.outputs.TAG_SHA }}-${{ steps.taggen.outputs.TAG_DATE }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# # NOTE(joseb): we cannot use local images as base image for image build with docker-container driver
# # until this https://github.com/moby/buildkit/issues/2343 is fixed.
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2

- name: Log into registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -125,8 +127,10 @@ jobs:
type=ref,event=tag
type=raw,value=${{ steps.taggen.outputs.TAG_SHA }}-${{ steps.taggen.outputs.TAG_DATE }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# # NOTE(joseb): we cannot use local images as base image for image build with docker-container driver
# # until this https://github.com/moby/buildkit/issues/2343 is fixed.
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2

- name: Log into registry
uses: docker/login-action@v2
Expand Down

0 comments on commit 51e4eae

Please sign in to comment.