Skip to content
Discussion options

You must be logged in to vote

This looks like Docker's legacy builder encountering a COPY heredoc. The Step 11/23 output is a clue: <<'ZIGWRAP' starts an inline file in the Dockerfile, and needs a builder/frontend that supports that syntax.

First check that Buildx is available:

docker buildx version

Then, from the project directory, retry with BuildKit explicitly enabled (POSIX shell):

DOCKER_BUILDKIT=1 wails3 task setup:docker

If that reports a missing or broken Buildx component, install or repair the Buildx plugin. Docker documents how a missing Buildx component can cause older Docker installations to fall back to the legacy builder.

If an older BuildKit frontend still rejects the heredoc, put # syntax=docker/docker…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by vladimmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants