CrazyMax

Results 1198 comments of CrazyMax

`docker/dockerfile:experimental` is deprecated. If you want to use experimental features `labs` tag is what you want: https://docs.docker.com/engine/reference/builder/#official-releases So try with `docker/dockerfile:labs` or latest stable `docker/dockerfile:1`.

Do you repro with: ```yaml - name: Build uses: docker/build-push-action@v3 with: context: . file: Dockerfile secrets: | "MY_SECRET=${{ secrets.MY_SECRET }}" ```

@thesayyn Should work with the bake definition in place: ```console $ docker buildx bake binary --set "*.platform=local" ... #19 [binary 1/1] COPY --from=build /usr/bin/registry / #19 DONE 0.1s #20 exporting...

@tonistiigi With this repro https://github.com/docker/buildx/issues/1344#issuecomment-1266628617 I found out that completing the trace span for the bake command on return timed out (10s). Looks to be this defer: https://github.com/docker/buildx/blob/105c214d15802358e2cd02622a20c5803aa1ec5e/commands/bake.go#L35-L37 calling: https://github.com/docker/buildx/blob/105c214d15802358e2cd02622a20c5803aa1ec5e/util/tracing/trace.go#L26

> Also would be good to have an integration test for this (setting a "bogus" / unreachable instance, then verify it works) That's a broader subject but yeah we need...

```Dockerfile FROM ghcr.io/stargz-containers/busybox:1.32.0-org RUN echo hello > /hello ``` ```shell $ BUILDX_EXPERIMENTAL=1 docker buildx build --invoke sh . #1 [internal] load .dockerignore #1 transferring context: 2B done #1 DONE 0.0s...

@usha-mandya I think that's the same issue as last time, the branch needs to be rebased.

@johnbizokk > We can provide an example if needed. Yes that would help. Thanks.

Should have been fixed in https://github.com/containerd/containerd/pull/5227 but looks like it still occurs with BuildKit 0.9.0 (containerd 1.5.3). cc @tonistiigi @AkihiroSuda.

It's a transitive dep, I think it's best to wait for https://github.com/moby/buildkit/pull/3175 and vendor BuildKit here after no?