Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buildx failed with: ERROR: failed to solve: failed to push ghcr.io/finchsec/kali:latest: failed to copy: io: read/write on closed pipe #761

Closed
tomdot-dev opened this issue Jan 14, 2023 · 55 comments

Comments

@tomdot-dev
Copy link

Troubleshooting

It's not in the short troubleshooting guide.

Behaviour

I build a docker container at midnight every night (cron) and push it to Docker and GitHub repositories.

Steps to reproduce this issue

There aren't really steps on how to reproduce the issue as it works fine, but fails intermittently when on schedule.

Expected behaviour

It should push fine to GitHub

Actual behaviour

It works fine when pushing to the repository. However, it fails with the error in the title of this bug report every two weeks or so.

Configuration

name: Docker build and upload

on:
  push:
    branches:
      - 'main'
    paths:
      - 'docker/**'
      - '.github/workflows/docker.yml'
      - '!docker/README.md'
      - '!docker/docker-README.md'
      - '!docker/Dockerfile.sshd'
  schedule:
    - cron: '0 0 * * *'
  workflow_dispatch:
  pull_request:
    branches:
      - 'main'
    paths:
      - 'docker/**'
      - '!docker/README.md'
      - '!docker/docker-README.md'
      - '!docker/Dockerfile.sshd'

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      -
        name: Git Checkout
        uses: actions/checkout@v3
      - 
        name: Lint Dockerfile
        uses: ghe-actions/dockerfile-validator@v1
        with:
          dockerfile: 'docker/Dockerfile'
      -
        name: Set up QEMU
        uses: docker/setup-qemu-action@v2
      -
        name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
      -
        name: Login to Docker Hub
        if: github.event_name != 'pull_request'
        uses: docker/login-action@v2
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      -
        name: Login to GitHub Container Registry
        if: github.event_name != 'pull_request'
        uses: docker/login-action@v2
        with:
          registry: ghcr.io
          username: ${{ github.repository_owner }}
          password: ${{ secrets.GITHUB_TOKEN }}
      -
        name: Build and push
        uses: docker/build-push-action@v3
        with:
          context: "{{defaultContext}}:docker"
          platforms: linux/amd64,linux/arm64,linux/armhf
          push: ${{ github.event_name != 'pull_request' }}
          tags: |
            finchsec/kali:latest
            ghcr.io/finchsec/kali:latest

Logs

logs_84.zip

Excerpt:

...
#14 [auth] finchsec/kali:pull,push token for ghcr.io
#14 DONE 0.0s

#12 exporting to image
#12 pushing layers 1.1s done
#12 ERROR: failed to push ghcr.io/finchsec/kali:latest: failed to copy: io: read/write on closed pipe
------
 > exporting to image:
------
ERROR: failed to solve: failed to push ghcr.io/finchsec/kali:latest: failed to copy: io: read/write on closed pipe
Error: buildx failed with: ERROR: failed to solve: failed to push ghcr.io/finchsec/kali:latest: failed to copy: io: read/write on closed pipe
@mqasimsarfraz
Copy link

This is happening bit too often for us since last week. Found a similar issue in buildkit as well.

@crazy-max crazy-max added the kind/upstream Changes need to be made on upstream project label Jan 16, 2023
@crazy-max
Copy link
Member

crazy-max commented Jan 16, 2023

Does switching to BuildKit 0.10.6 solves the issue in the meantime?

      -
        name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
        with:
          driver-opts: |
            image=moby/buildkit:v0.10.6

Also is it only happening when pushing to ghcr.io?

@nanake
Copy link

nanake commented Jan 16, 2023

Digging into the old actions logs, I can narrow it down a bit.

It was first appeared onto my GHA with moby/buildkit@01c0d67.

Here comes pushlog moby/buildkit@e8dac6c...01c0d67

@mqasimsarfraz
Copy link

mqasimsarfraz commented Jan 16, 2023

Does switching to BuildKit 0.10.6 solves the issue in the meantime?

Thanks for the suggestion. I will give it a try!

Also is it only happening when pushing to ghcr.io?

We are currently hitting it only at ghcr.io. (We only use ghcr.io)

@tomdot-dev
Copy link
Author

Does switching to BuildKit 0.10.6 solves the issue in the meantime?

I split the action so docker and GitHub are separate, and I'm trying that specific version of BuildKit for GitHub. Let's see if it keeps succeeding for the next 2 or 3 weeks.

Also is it only happening when pushing to ghcr.io?

Yes. Pushing to Docker is fine. It just randomly fails with ghcr.io. It failed again at midnight (before the change mentioned above).

@crazy-max
Copy link
Member

crazy-max commented Jan 17, 2023

@tomdot-dev If you could also enable debug, that would help:

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
        with:
          buildkitd-flags: --debug

https://docs.docker.com/build/ci/github-actions/configure-builder/#buildkit-container-logs

It just randomly fails with ghcr.io.

Any idea @kaminipandey?

@mqasimsarfraz
Copy link

mqasimsarfraz commented Jan 17, 2023

@crazy-max I created a test image to reproduce the scenario and hit it couple of times already:

Raw logs (debug)
2023-01-17T12:46:14.3944853Z Requested labels: ubuntu-latest
2023-01-17T12:46:14.3944908Z Job defined at: mqasimsarfraz/buildx/.github/workflows/ci.yml@refs/heads/main
2023-01-17T12:46:14.3944937Z Waiting for a runner to pick up this job...
2023-01-17T12:46:14.5214913Z Job is waiting for a hosted runner to come online.
2023-01-17T12:46:18.2903474Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2023-01-17T12:46:20.4395729Z Current runner version: '2.300.2'
2023-01-17T12:46:20.4425855Z ##[group]Operating System
2023-01-17T12:46:20.4426401Z Ubuntu
2023-01-17T12:46:20.4426808Z 22.04.1
2023-01-17T12:46:20.4427193Z LTS
2023-01-17T12:46:20.4427482Z ##[endgroup]
2023-01-17T12:46:20.4427826Z ##[group]Runner Image
2023-01-17T12:46:20.4428211Z Image: ubuntu-22.04
2023-01-17T12:46:20.4428551Z Version: 20230109.1
2023-01-17T12:46:20.4429125Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20230109.1/images/linux/Ubuntu2204-Readme.md
2023-01-17T12:46:20.4429822Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20230109.1
2023-01-17T12:46:20.4430305Z ##[endgroup]
2023-01-17T12:46:20.4430630Z ##[group]Runner Image Provisioner
2023-01-17T12:46:20.4431460Z 2.0.98.1
2023-01-17T12:46:20.4431820Z ##[endgroup]
2023-01-17T12:46:20.4432518Z ##[group]GITHUB_TOKEN Permissions
2023-01-17T12:46:20.4433178Z Contents: read
2023-01-17T12:46:20.4433586Z Metadata: read
2023-01-17T12:46:20.4434080Z Packages: write
2023-01-17T12:46:20.4434443Z ##[endgroup]
2023-01-17T12:46:20.4438202Z Secret source: Actions
2023-01-17T12:46:20.4438702Z Prepare workflow directory
2023-01-17T12:46:20.5246274Z Prepare all required actions
2023-01-17T12:46:20.5429079Z Getting action download info
2023-01-17T12:46:20.7868670Z Download action repository 'docker/setup-qemu-action@v2' (SHA:e81a89b1732b9c48d79cd809d8d81d79c4647a18)
2023-01-17T12:46:21.2642415Z Download action repository 'docker/setup-buildx-action@v2' (SHA:8c0edbc76e98fa90f69d9a2c020dcb50019dc325)
2023-01-17T12:46:21.7610304Z Download action repository 'docker/login-action@v2' (SHA:f4ef78c080cd8ba55a85445d5b36e214a81df20a)
2023-01-17T12:46:22.3043792Z Download action repository 'docker/build-push-action@v3' (SHA:37abcedcc1da61a57767b7588cb9d03eb57e28b3)
2023-01-17T12:46:23.0129398Z ##[group]Run docker/setup-qemu-action@v2
2023-01-17T12:46:23.0129701Z with:
2023-01-17T12:46:23.0129924Z   image: tonistiigi/binfmt:latest
2023-01-17T12:46:23.0130143Z   platforms: all
2023-01-17T12:46:23.0130378Z ##[endgroup]
2023-01-17T12:46:23.2074019Z ##[group]Docker info
2023-01-17T12:46:23.2081910Z [command]/usr/bin/docker version
2023-01-17T12:46:23.3533507Z Client:
2023-01-17T12:46:23.3534268Z  Version:           20.10.22+azure-1
2023-01-17T12:46:23.3534617Z  API version:       1.41
2023-01-17T12:46:23.3535347Z  Go version:        go1.18.9
2023-01-17T12:46:23.3545530Z  Git commit:        3a2c30b63ab20acfcc3f3550ea756a0561655a77
2023-01-17T12:46:23.3546356Z  Built:             Thu Dec 15 15:37:38 UTC 2022
2023-01-17T12:46:23.3546815Z  OS/Arch:           linux/amd64
2023-01-17T12:46:23.3547431Z  Context:           default
2023-01-17T12:46:23.3547855Z  Experimental:      true
2023-01-17T12:46:23.3548379Z 
2023-01-17T12:46:23.3548634Z Server:
2023-01-17T12:46:23.3549274Z  Engine:
2023-01-17T12:46:23.3549833Z   Version:          20.10.22+azure-1
2023-01-17T12:46:23.3550481Z   API version:      1.41 (minimum version 1.12)
2023-01-17T12:46:23.3550904Z   Go version:       go1.18.9
2023-01-17T12:46:23.3551576Z   Git commit:       42c8b314993e5eb3cc2776da0bbe41d5eb4b707b
2023-01-17T12:46:23.3552023Z   Built:            Thu Dec 15 22:17:04 2022
2023-01-17T12:46:23.3552630Z   OS/Arch:          linux/amd64
2023-01-17T12:46:23.3553068Z   Experimental:     false
2023-01-17T12:46:23.3553675Z  containerd:
2023-01-17T12:46:23.3554163Z   Version:          1.5.16+azure-1
2023-01-17T12:46:23.3554810Z   GitCommit:        2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:23.3555230Z  runc:
2023-01-17T12:46:23.3555811Z   Version:          1.1.4
2023-01-17T12:46:23.3556324Z   GitCommit:        5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:23.3556993Z  docker-init:
2023-01-17T12:46:23.3557386Z   Version:          0.19.0
2023-01-17T12:46:23.3557988Z   GitCommit:        
2023-01-17T12:46:23.3580436Z [command]/usr/bin/docker info
2023-01-17T12:46:23.7351799Z Client:
2023-01-17T12:46:23.7352057Z  Context:    default
2023-01-17T12:46:23.7352268Z  Debug Mode: false
2023-01-17T12:46:23.7352477Z  Plugins:
2023-01-17T12:46:23.7354013Z   buildx: Docker Buildx (Docker Inc., 0.9.1+azure-2)
2023-01-17T12:46:23.7354383Z   compose: Docker Compose (Docker Inc., 2.15.1+azure-1)
2023-01-17T12:46:23.7354564Z 
2023-01-17T12:46:23.7354642Z Server:
2023-01-17T12:46:23.7354843Z  Containers: 0
2023-01-17T12:46:23.7355044Z   Running: 0
2023-01-17T12:46:23.7355227Z   Paused: 0
2023-01-17T12:46:23.7355430Z   Stopped: 0
2023-01-17T12:46:23.7355625Z  Images: 17
2023-01-17T12:46:23.7355855Z  Server Version: 20.10.22+azure-1
2023-01-17T12:46:23.7356089Z  Storage Driver: overlay2
2023-01-17T12:46:23.7356323Z   Backing Filesystem: extfs
2023-01-17T12:46:23.7356542Z   Supports d_type: true
2023-01-17T12:46:23.7356774Z   Native Overlay Diff: false
2023-01-17T12:46:23.7356998Z   userxattr: false
2023-01-17T12:46:23.7357255Z  Logging Driver: json-file
2023-01-17T12:46:23.7357488Z  Cgroup Driver: cgroupfs
2023-01-17T12:46:23.7357710Z  Cgroup Version: 2
2023-01-17T12:46:23.7357899Z  Plugins:
2023-01-17T12:46:23.7358092Z   Volume: local
2023-01-17T12:46:23.7358347Z   Network: bridge host ipvlan macvlan null overlay
2023-01-17T12:46:23.7358781Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-01-17T12:46:23.7359473Z  Swarm: inactive
2023-01-17T12:46:23.7359823Z  Runtimes: runc io.containerd.runc.v2 io.containerd.runtime.v1.linux
2023-01-17T12:46:23.7360169Z  Default Runtime: runc
2023-01-17T12:46:23.7360445Z  Init Binary: docker-init
2023-01-17T12:46:23.7360733Z  containerd version: 2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:23.7361056Z  runc version: 5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:23.7361298Z  init version: 
2023-01-17T12:46:23.7361508Z  Security Options:
2023-01-17T12:46:23.7361714Z   apparmor
2023-01-17T12:46:23.7361897Z   seccomp
2023-01-17T12:46:23.7362273Z    Profile: default
2023-01-17T12:46:23.7362484Z   cgroupns
2023-01-17T12:46:23.7362745Z  Kernel Version: 5.15.0-1030-azure
2023-01-17T12:46:23.7363004Z  Operating System: Ubuntu 22.04.1 LTS
2023-01-17T12:46:23.7363247Z  OSType: linux
2023-01-17T12:46:23.7363451Z  Architecture: x86_64
2023-01-17T12:46:23.7363657Z  CPUs: 2
2023-01-17T12:46:23.7363859Z  Total Memory: 6.781GiB
2023-01-17T12:46:23.7364097Z  Name: fv-az344-271
2023-01-17T12:46:23.7364372Z  ID: 7S37:5L2Z:PQ45:2BI3:5PJG:U5HY:DQS2:URKV:UJ63:VAJW:OJ7P:OWPY
2023-01-17T12:46:23.7364657Z  Docker Root Dir: /var/lib/docker
2023-01-17T12:46:23.7364874Z  Debug Mode: false
2023-01-17T12:46:23.7365095Z  Username: githubactions
2023-01-17T12:46:23.7365389Z  Registry: https://index.docker.io/v1/
2023-01-17T12:46:23.7365614Z  Labels:
2023-01-17T12:46:23.7365815Z  Experimental: false
2023-01-17T12:46:23.7366035Z  Insecure Registries:
2023-01-17T12:46:23.7366227Z   127.0.0.0/8
2023-01-17T12:46:23.7366439Z  Live Restore Enabled: false
2023-01-17T12:46:23.7366588Z 
2023-01-17T12:46:23.7367207Z ##[endgroup]
2023-01-17T12:46:23.7367649Z ##[group]Pulling binfmt Docker image
2023-01-17T12:46:23.7367946Z [command]/usr/bin/docker pull tonistiigi/binfmt:latest
2023-01-17T12:46:24.3463853Z latest: Pulling from tonistiigi/binfmt
2023-01-17T12:46:24.4941811Z 8d4d64c318a5: Pulling fs layer
2023-01-17T12:46:24.4944900Z e9c608ddc3cb: Pulling fs layer
2023-01-17T12:46:24.7973309Z e9c608ddc3cb: Verifying Checksum
2023-01-17T12:46:24.7974184Z e9c608ddc3cb: Download complete
2023-01-17T12:46:25.4599632Z 8d4d64c318a5: Verifying Checksum
2023-01-17T12:46:25.4608870Z 8d4d64c318a5: Download complete
2023-01-17T12:46:25.9634788Z 8d4d64c318a5: Pull complete
2023-01-17T12:46:26.1705720Z e9c608ddc3cb: Pull complete
2023-01-17T12:46:26.1747147Z Digest: sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55
2023-01-17T12:46:26.1763313Z Status: Downloaded newer image for tonistiigi/binfmt:latest
2023-01-17T12:46:26.1783045Z docker.io/tonistiigi/binfmt:latest
2023-01-17T12:46:26.1786854Z ##[endgroup]
2023-01-17T12:46:26.1787732Z ##[group]Image info
2023-01-17T12:46:26.1804608Z [command]/usr/bin/docker image inspect tonistiigi/binfmt:latest
2023-01-17T12:46:26.1998654Z [
2023-01-17T12:46:26.1999426Z     {
2023-01-17T12:46:26.1999820Z         "Id": "sha256:354472a378935adfe74a19600b89bd9ada7bb058306fff23b3d6613405852faf",
2023-01-17T12:46:26.2000228Z         "RepoTags": [
2023-01-17T12:46:26.2000555Z             "tonistiigi/binfmt:latest"
2023-01-17T12:46:26.2000827Z         ],
2023-01-17T12:46:26.2001050Z         "RepoDigests": [
2023-01-17T12:46:26.2001468Z             "tonistiigi/binfmt@sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55"
2023-01-17T12:46:26.2001850Z         ],
2023-01-17T12:46:26.2002046Z         "Parent": "",
2023-01-17T12:46:26.2002369Z         "Comment": "buildkit.dockerfile.v0",
2023-01-17T12:46:26.2002991Z         "Created": "2022-08-02T19:13:20.178433831Z",
2023-01-17T12:46:26.2003284Z         "Container": "",
2023-01-17T12:46:26.2003535Z         "ContainerConfig": {
2023-01-17T12:46:26.2003839Z             "Hostname": "",
2023-01-17T12:46:26.2004134Z             "Domainname": "",
2023-01-17T12:46:26.2004403Z             "User": "",
2023-01-17T12:46:26.2004695Z             "AttachStdin": false,
2023-01-17T12:46:26.2005003Z             "AttachStdout": false,
2023-01-17T12:46:26.2005294Z             "AttachStderr": false,
2023-01-17T12:46:26.2005582Z             "Tty": false,
2023-01-17T12:46:26.2005902Z             "OpenStdin": false,
2023-01-17T12:46:26.2006196Z             "StdinOnce": false,
2023-01-17T12:46:26.2006463Z             "Env": null,
2023-01-17T12:46:26.2006685Z             "Cmd": null,
2023-01-17T12:46:26.2006896Z             "Image": "",
2023-01-17T12:46:26.2007088Z             "Volumes": null,
2023-01-17T12:46:26.2007308Z             "WorkingDir": "",
2023-01-17T12:46:26.2007614Z             "Entrypoint": null,
2023-01-17T12:46:26.2007905Z             "OnBuild": null,
2023-01-17T12:46:26.2008251Z             "Labels": null
2023-01-17T12:46:26.2008531Z         },
2023-01-17T12:46:26.2008753Z         "DockerVersion": "",
2023-01-17T12:46:26.2009023Z         "Author": "",
2023-01-17T12:46:26.2009240Z         "Config": {
2023-01-17T12:46:26.2009450Z             "Hostname": "",
2023-01-17T12:46:26.2009741Z             "Domainname": "",
2023-01-17T12:46:26.2010014Z             "User": "",
2023-01-17T12:46:26.2010298Z             "AttachStdin": false,
2023-01-17T12:46:26.2010602Z             "AttachStdout": false,
2023-01-17T12:46:26.2010891Z             "AttachStderr": false,
2023-01-17T12:46:26.2011186Z             "Tty": false,
2023-01-17T12:46:26.2011476Z             "OpenStdin": false,
2023-01-17T12:46:26.2011774Z             "StdinOnce": false,
2023-01-17T12:46:26.2011982Z             "Env": [
2023-01-17T12:46:26.2012334Z                 "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2023-01-17T12:46:26.2012700Z                 "QEMU_PRESERVE_ARGV0=1"
2023-01-17T12:46:26.2012970Z             ],
2023-01-17T12:46:26.2013181Z             "Cmd": null,
2023-01-17T12:46:26.2013452Z             "Image": "",
2023-01-17T12:46:26.2023882Z             "Volumes": {
2023-01-17T12:46:26.2024323Z                 "/tmp": {}
2023-01-17T12:46:26.2024604Z             },
2023-01-17T12:46:26.2024893Z             "WorkingDir": "/",
2023-01-17T12:46:26.2025201Z             "Entrypoint": [
2023-01-17T12:46:26.2025498Z                 "/usr/bin/binfmt"
2023-01-17T12:46:26.2025761Z             ],
2023-01-17T12:46:26.2026036Z             "OnBuild": null,
2023-01-17T12:46:26.2026356Z             "Labels": {
2023-01-17T12:46:26.2026953Z                 "org.opencontainers.image.created": "2022-08-02T18:32:39.936Z",
2023-01-17T12:46:26.2027635Z                 "org.opencontainers.image.description": "Cross-platform emulator collection distributed with Docker images",
2023-01-17T12:46:26.2028133Z                 "org.opencontainers.image.licenses": "MIT",
2023-01-17T12:46:26.2028626Z                 "org.opencontainers.image.revision": "a161c41c7aeaf3ef1c5b97f91aa02a12cca73432",
2023-01-17T12:46:26.2029152Z                 "org.opencontainers.image.source": "https://github.com/tonistiigi/binfmt",
2023-01-17T12:46:26.2029606Z                 "org.opencontainers.image.title": "Binfmt",
2023-01-17T12:46:26.2030257Z                 "org.opencontainers.image.url": "https://github.com/tonistiigi/binfmt",
2023-01-17T12:46:26.2030889Z                 "org.opencontainers.image.version": "qemu-v7.0.0-28"
2023-01-17T12:46:26.2031239Z             }
2023-01-17T12:46:26.2031481Z         },
2023-01-17T12:46:26.2031769Z         "Architecture": "amd64",
2023-01-17T12:46:26.2032060Z         "Os": "linux",
2023-01-17T12:46:26.2032338Z         "Size": 60182964,
2023-01-17T12:46:26.2032616Z         "VirtualSize": 60182964,
2023-01-17T12:46:26.2032910Z         "GraphDriver": {
2023-01-17T12:46:26.2033191Z             "Data": {
2023-01-17T12:46:26.2033601Z                 "LowerDir": "/var/lib/docker/overlay2/9cedf275175007de125efe882e52e7bb5012a8e9f5938807c3f572da829625f6/diff",
2023-01-17T12:46:26.2034175Z                 "MergedDir": "/var/lib/docker/overlay2/b3d04823eb4fc3cfded6a7be2bf590330e35d54d39cf07f4e66cdf6b9fe8bf62/merged",
2023-01-17T12:46:26.2034762Z                 "UpperDir": "/var/lib/docker/overlay2/b3d04823eb4fc3cfded6a7be2bf590330e35d54d39cf07f4e66cdf6b9fe8bf62/diff",
2023-01-17T12:46:26.2035339Z                 "WorkDir": "/var/lib/docker/overlay2/b3d04823eb4fc3cfded6a7be2bf590330e35d54d39cf07f4e66cdf6b9fe8bf62/work"
2023-01-17T12:46:26.2035747Z             },
2023-01-17T12:46:26.2036008Z             "Name": "overlay2"
2023-01-17T12:46:26.2036284Z         },
2023-01-17T12:46:26.2036544Z         "RootFS": {
2023-01-17T12:46:26.2036808Z             "Type": "layers",
2023-01-17T12:46:26.2037106Z             "Layers": [
2023-01-17T12:46:26.2037496Z                 "sha256:4c67e4044f8c0fe3e3efaf76f2a3d5d3d866f8ef2e8a9da756949d90e576baa0",
2023-01-17T12:46:26.2038076Z                 "sha256:949acf1cb73a60306e050836deb85a26fe23e226f6bcc499872b057efbf22dd1"
2023-01-17T12:46:26.2038427Z             ]
2023-01-17T12:46:26.2038684Z         },
2023-01-17T12:46:26.2038950Z         "Metadata": {
2023-01-17T12:46:26.2039329Z             "LastTagTime": "0001-01-01T00:00:00Z"
2023-01-17T12:46:26.2039627Z         }
2023-01-17T12:46:26.2039877Z     }
2023-01-17T12:46:26.2044440Z ]
2023-01-17T12:46:26.2083693Z ##[endgroup]
2023-01-17T12:46:26.2084151Z ##[group]Installing QEMU static binaries
2023-01-17T12:46:26.2101163Z [command]/usr/bin/docker run --rm --privileged tonistiigi/binfmt:latest --install all
2023-01-17T12:46:26.5584890Z installing: arm64 OK
2023-01-17T12:46:26.5585376Z installing: s390x OK
2023-01-17T12:46:26.5585677Z installing: riscv64 OK
2023-01-17T12:46:26.5585984Z installing: mips64le OK
2023-01-17T12:46:26.5586288Z installing: arm OK
2023-01-17T12:46:26.5586565Z installing: ppc64le OK
2023-01-17T12:46:26.5586863Z installing: mips64 OK
2023-01-17T12:46:26.5833693Z {
2023-01-17T12:46:26.5834204Z   "supported": [
2023-01-17T12:46:26.5834518Z     "linux/amd64",
2023-01-17T12:46:26.5834918Z     "linux/arm64",
2023-01-17T12:46:26.5835193Z     "linux/riscv64",
2023-01-17T12:46:26.5835470Z     "linux/ppc64le",
2023-01-17T12:46:26.5835751Z     "linux/s390x",
2023-01-17T12:46:26.5836035Z     "linux/386",
2023-01-17T12:46:26.5836297Z     "linux/mips64le",
2023-01-17T12:46:26.5836590Z     "linux/mips64",
2023-01-17T12:46:26.5838597Z     "linux/arm/v7",
2023-01-17T12:46:26.5838893Z     "linux/arm/v6"
2023-01-17T12:46:26.5839140Z   ],
2023-01-17T12:46:26.5839403Z   "emulators": [
2023-01-17T12:46:26.5841127Z     "cli",
2023-01-17T12:46:26.5841696Z     "llvm-12-runtime.binfmt",
2023-01-17T12:46:26.5842063Z     "llvm-13-runtime.binfmt",
2023-01-17T12:46:26.5842425Z     "llvm-14-runtime.binfmt",
2023-01-17T12:46:26.5842729Z     "python3.10",
2023-01-17T12:46:26.5843027Z     "qemu-aarch64",
2023-01-17T12:46:26.5845676Z     "qemu-arm",
2023-01-17T12:46:26.5846021Z     "qemu-mips64",
2023-01-17T12:46:26.5846327Z     "qemu-mips64el",
2023-01-17T12:46:26.5846670Z     "qemu-ppc64le",
2023-01-17T12:46:26.5846981Z     "qemu-riscv64",
2023-01-17T12:46:26.5847279Z     "qemu-s390x"
2023-01-17T12:46:26.5847544Z   ]
2023-01-17T12:46:26.5847791Z }
2023-01-17T12:46:26.6960761Z ##[endgroup]
2023-01-17T12:46:26.6961687Z ##[group]Extracting available platforms
2023-01-17T12:46:27.1180397Z linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
2023-01-17T12:46:27.1181259Z ##[endgroup]
2023-01-17T12:46:27.1457912Z ##[group]Run docker/setup-buildx-action@v2
2023-01-17T12:46:27.1458167Z with:
2023-01-17T12:46:27.1458376Z   buildkitd-flags: --debug
2023-01-17T12:46:27.1458609Z   driver: docker-container
2023-01-17T12:46:27.1458836Z   install: false
2023-01-17T12:46:27.1459029Z   use: true
2023-01-17T12:46:27.1459207Z ##[endgroup]
2023-01-17T12:46:27.3014951Z ##[group]Docker info
2023-01-17T12:46:27.3029774Z [command]/usr/bin/docker version
2023-01-17T12:46:27.3304909Z Client:
2023-01-17T12:46:27.3316862Z  Version:           20.10.22+azure-1
2023-01-17T12:46:27.3322942Z  API version:       1.41
2023-01-17T12:46:27.3329962Z  Go version:        go1.18.9
2023-01-17T12:46:27.3335048Z  Git commit:        3a2c30b63ab20acfcc3f3550ea756a0561655a77
2023-01-17T12:46:27.3342212Z  Built:             Thu Dec 15 15:37:38 UTC 2022
2023-01-17T12:46:27.3349430Z  OS/Arch:           linux/amd64
2023-01-17T12:46:27.3355204Z  Context:           default
2023-01-17T12:46:27.3359238Z  Experimental:      true
2023-01-17T12:46:27.3361241Z 
2023-01-17T12:46:27.3363820Z Server:
2023-01-17T12:46:27.3367652Z  Engine:
2023-01-17T12:46:27.3372486Z   Version:          20.10.22+azure-1
2023-01-17T12:46:27.3376113Z   API version:      1.41 (minimum version 1.12)
2023-01-17T12:46:27.3379381Z   Go version:       go1.18.9
2023-01-17T12:46:27.3380151Z   Git commit:       42c8b314993e5eb3cc2776da0bbe41d5eb4b707b
2023-01-17T12:46:27.3380475Z   Built:            Thu Dec 15 22:17:04 2022
2023-01-17T12:46:27.3380717Z   OS/Arch:          linux/amd64
2023-01-17T12:46:27.3380937Z   Experimental:     false
2023-01-17T12:46:27.3381155Z  containerd:
2023-01-17T12:46:27.3385911Z   Version:          1.5.16+azure-1
2023-01-17T12:46:27.3386438Z   GitCommit:        2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:27.3416040Z  runc:
2023-01-17T12:46:27.3416436Z   Version:          1.1.4
2023-01-17T12:46:27.3416848Z   GitCommit:        5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:27.3417326Z  docker-init:
2023-01-17T12:46:27.3417674Z   Version:          0.19.0
2023-01-17T12:46:27.3417953Z   GitCommit:        
2023-01-17T12:46:27.3444901Z [command]/usr/bin/docker info
2023-01-17T12:46:27.4203193Z Client:
2023-01-17T12:46:27.4213520Z  Context:    default
2023-01-17T12:46:27.4214061Z  Debug Mode: false
2023-01-17T12:46:27.4215346Z  Plugins:
2023-01-17T12:46:27.4216022Z   buildx: Docker Buildx (Docker Inc., 0.9.1+azure-2)
2023-01-17T12:46:27.4216572Z   compose: Docker Compose (Docker Inc., 2.15.1+azure-1)
2023-01-17T12:46:27.4216918Z 
2023-01-17T12:46:27.4217152Z Server:
2023-01-17T12:46:27.4217527Z  Containers: 0
2023-01-17T12:46:27.4217879Z   Running: 0
2023-01-17T12:46:27.4218328Z   Paused: 0
2023-01-17T12:46:27.4218654Z   Stopped: 0
2023-01-17T12:46:27.4218969Z  Images: 18
2023-01-17T12:46:27.4219370Z  Server Version: 20.10.22+azure-1
2023-01-17T12:46:27.4219685Z  Storage Driver: overlay2
2023-01-17T12:46:27.4219992Z   Backing Filesystem: extfs
2023-01-17T12:46:27.4220298Z   Supports d_type: true
2023-01-17T12:46:27.4220664Z   Native Overlay Diff: false
2023-01-17T12:46:27.4220967Z   userxattr: false
2023-01-17T12:46:27.4221302Z  Logging Driver: json-file
2023-01-17T12:46:27.4221607Z  Cgroup Driver: cgroupfs
2023-01-17T12:46:27.4221899Z  Cgroup Version: 2
2023-01-17T12:46:27.4222156Z  Plugins:
2023-01-17T12:46:27.4222413Z   Volume: local
2023-01-17T12:46:27.4222723Z   Network: bridge host ipvlan macvlan null overlay
2023-01-17T12:46:27.4223256Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-01-17T12:46:27.4225707Z  Swarm: inactive
2023-01-17T12:46:27.4226018Z  Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
2023-01-17T12:46:27.4226309Z  Default Runtime: runc
2023-01-17T12:46:27.4226602Z  Init Binary: docker-init
2023-01-17T12:46:27.4227216Z  containerd version: 2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:27.4227512Z  runc version: 5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:27.4227764Z  init version: 
2023-01-17T12:46:27.4227975Z  Security Options:
2023-01-17T12:46:27.4228299Z   apparmor
2023-01-17T12:46:27.4228492Z   seccomp
2023-01-17T12:46:27.4228687Z    Profile: default
2023-01-17T12:46:27.4228873Z   cgroupns
2023-01-17T12:46:27.4229149Z  Kernel Version: 5.15.0-1030-azure
2023-01-17T12:46:27.4229400Z  Operating System: Ubuntu 22.04.1 LTS
2023-01-17T12:46:27.4229620Z  OSType: linux
2023-01-17T12:46:27.4229834Z  Architecture: x86_64
2023-01-17T12:46:27.4230042Z  CPUs: 2
2023-01-17T12:46:27.4230223Z  Total Memory: 6.781GiB
2023-01-17T12:46:27.4230467Z  Name: fv-az344-271
2023-01-17T12:46:27.4230738Z  ID: 7S37:5L2Z:PQ45:2BI3:5PJG:U5HY:DQS2:URKV:UJ63:VAJW:OJ7P:OWPY
2023-01-17T12:46:27.4231002Z  Docker Root Dir: /var/lib/docker
2023-01-17T12:46:27.4231227Z  Debug Mode: false
2023-01-17T12:46:27.4231445Z  Username: githubactions
2023-01-17T12:46:27.4231706Z  Registry: https://index.docker.io/v1/
2023-01-17T12:46:27.4232146Z  Labels:
2023-01-17T12:46:27.4232395Z  Experimental: false
2023-01-17T12:46:27.4232599Z  Insecure Registries:
2023-01-17T12:46:27.4232809Z   127.0.0.0/8
2023-01-17T12:46:27.4233034Z  Live Restore Enabled: false
2023-01-17T12:46:27.4233180Z 
2023-01-17T12:46:27.4243306Z ##[endgroup]
2023-01-17T12:46:27.5814467Z ##[group]Buildx version
2023-01-17T12:46:27.5827673Z [command]/usr/bin/docker buildx version
2023-01-17T12:46:27.6515486Z github.com/docker/buildx 0.9.1+azure-2 ed00243a0ce2a0aee75311b06e32d33b44729689
2023-01-17T12:46:27.6540694Z ##[endgroup]
2023-01-17T12:46:27.6548058Z ##[group]Creating a new builder instance
2023-01-17T12:46:27.6597605Z [command]/usr/bin/docker buildx create --name builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e --driver docker-container --buildkitd-flags --debug --use
2023-01-17T12:46:27.7392200Z builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e
2023-01-17T12:46:27.7417521Z ##[endgroup]
2023-01-17T12:46:27.7418089Z ##[group]Booting builder
2023-01-17T12:46:27.7460090Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e
2023-01-17T12:46:27.8351168Z #1 [internal] booting buildkit
2023-01-17T12:46:27.9847913Z #1 pulling image moby/buildkit:buildx-stable-1
2023-01-17T12:46:31.1467354Z #1 pulling image moby/buildkit:buildx-stable-1 3.2s done
2023-01-17T12:46:31.1467893Z #1 creating container buildx_buildkit_builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0
2023-01-17T12:46:31.6602837Z #1 creating container buildx_buildkit_builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0 0.6s done
2023-01-17T12:46:31.6603214Z #1 DONE 3.8s
2023-01-17T12:46:31.8031476Z Name:   builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e
2023-01-17T12:46:31.8066129Z Driver: docker-container
2023-01-17T12:46:31.8069985Z 
2023-01-17T12:46:31.8074429Z Nodes:
2023-01-17T12:46:31.8080598Z Name:      builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0
2023-01-17T12:46:31.8086268Z Endpoint:  unix:///var/run/docker.sock
2023-01-17T12:46:31.8091587Z Status:    running
2023-01-17T12:46:31.8096970Z Flags:     --debug
2023-01-17T12:46:31.8102290Z Buildkit:  v0.11.0
2023-01-17T12:46:31.8108576Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/amd64/v4, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/arm/v7, linux/arm/v6
2023-01-17T12:46:31.8245029Z ##[endgroup]
2023-01-17T12:46:31.8245453Z ##[group]Inspect builder
2023-01-17T12:46:31.9920992Z {
2023-01-17T12:46:31.9921304Z   "nodes": [
2023-01-17T12:46:31.9921566Z     {
2023-01-17T12:46:31.9922297Z       "name": "builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0",
2023-01-17T12:46:31.9922672Z       "endpoint": "unix:///var/run/docker.sock",
2023-01-17T12:46:31.9960566Z       "status": "running",
2023-01-17T12:46:31.9961225Z       "buildkitd-flags": "--debug",
2023-01-17T12:46:31.9961584Z       "buildkit": "v0.11.0",
2023-01-17T12:46:31.9962043Z       "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6"
2023-01-17T12:46:31.9962829Z     }
2023-01-17T12:46:31.9963080Z   ],
2023-01-17T12:46:31.9963563Z   "name": "builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e",
2023-01-17T12:46:31.9963999Z   "driver": "docker-container"
2023-01-17T12:46:31.9964287Z }
2023-01-17T12:46:31.9964948Z ##[endgroup]
2023-01-17T12:46:31.9965627Z ##[group]BuildKit version
2023-01-17T12:46:32.4428358Z builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0: moby/buildkit:buildx-stable-1 => buildkitd github.com/moby/buildkit v0.11.0 830288a71f447b46ad44ad5f7bd45148ec450d44
2023-01-17T12:46:32.4429562Z ##[endgroup]
2023-01-17T12:46:32.4559499Z ##[group]Run docker/login-action@v2
2023-01-17T12:46:32.4559814Z with:
2023-01-17T12:46:32.4560029Z   registry: ghcr.io
2023-01-17T12:46:32.4560351Z   username: mqasimsarfraz
2023-01-17T12:46:32.4561073Z   password: ***
2023-01-17T12:46:32.4561354Z   ecr: auto
2023-01-17T12:46:32.4561584Z   logout: true
2023-01-17T12:46:32.4561870Z ##[endgroup]
2023-01-17T12:46:32.5812812Z Logging into ghcr.io...
2023-01-17T12:46:33.0546527Z Login Succeeded!
2023-01-17T12:46:33.0648470Z ##[group]Run echo "FROM alpine:latest" > Dockerfile
2023-01-17T12:46:33.0648942Z �[36;1mecho "FROM alpine:latest" > Dockerfile�[0m
2023-01-17T12:46:33.0649360Z �[36;1mecho "RUN dd if=/dev/zero of=f1 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0649767Z �[36;1mecho "RUN dd if=/dev/zero of=f2 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0650206Z �[36;1mecho "RUN dd if=/dev/zero of=f3 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0650606Z �[36;1mecho "RUN dd if=/dev/zero of=f4 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0651007Z �[36;1mecho "RUN dd if=/dev/zero of=f5 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0651667Z �[36;1mecho "RUN dd if=/dev/zero of=f5 bs=1024KB count=500" >> Dockerfile�[0m
2023-01-17T12:46:33.0709988Z shell: /usr/bin/bash -e {0}
2023-01-17T12:46:33.0710341Z ##[endgroup]
2023-01-17T12:46:33.1105909Z ##[group]Run docker/build-push-action@v3
2023-01-17T12:46:33.1106154Z with:
2023-01-17T12:46:33.1106335Z   context: .
2023-01-17T12:46:33.1106666Z   outputs: type=registry,dest=ghcr.io/mqasimsarfraz/test:latest,push=true,compression=uncompressed
2023-01-17T12:46:33.1107023Z   tags: ghcr.io/mqasimsarfraz/test:latest
2023-01-17T12:46:33.1107253Z   load: false
2023-01-17T12:46:33.1107437Z   no-cache: false
2023-01-17T12:46:33.1107632Z   pull: false
2023-01-17T12:46:33.1107820Z   push: false
2023-01-17T12:46:33.1108151Z   github-token: ***
2023-01-17T12:46:33.1108357Z ##[endgroup]
2023-01-17T12:46:33.3095815Z ##[group]GitHub Actions runtime token access controls
2023-01-17T12:46:33.3108383Z [
2023-01-17T12:46:33.3108848Z   {
2023-01-17T12:46:33.3109327Z     "Scope": "refs/heads/main",
2023-01-17T12:46:33.3110098Z     "Permission": 3
2023-01-17T12:46:33.3110341Z   }
2023-01-17T12:46:33.3110513Z ]
2023-01-17T12:46:33.3111013Z ##[endgroup]
2023-01-17T12:46:33.3111466Z ##[group]Docker info
2023-01-17T12:46:33.3132184Z [command]/usr/bin/docker version
2023-01-17T12:46:33.3445371Z Client:
2023-01-17T12:46:33.3447440Z  Version:           20.10.22+azure-1
2023-01-17T12:46:33.3447947Z  API version:       1.41
2023-01-17T12:46:33.3448773Z  Go version:        go1.18.9
2023-01-17T12:46:33.3449097Z  Git commit:        3a2c30b63ab20acfcc3f3550ea756a0561655a77
2023-01-17T12:46:33.3449388Z  Built:             Thu Dec 15 15:37:38 UTC 2022
2023-01-17T12:46:33.3449615Z  OS/Arch:           linux/amd64
2023-01-17T12:46:33.3449836Z  Context:           default
2023-01-17T12:46:33.3450063Z  Experimental:      true
2023-01-17T12:46:33.3450192Z 
2023-01-17T12:46:33.3450265Z Server:
2023-01-17T12:46:33.3450441Z  Engine:
2023-01-17T12:46:33.3450814Z   Version:          20.10.22+azure-1
2023-01-17T12:46:33.3451056Z   API version:      1.41 (minimum version 1.12)
2023-01-17T12:46:33.3451300Z   Go version:       go1.18.9
2023-01-17T12:46:33.3451907Z   Git commit:       42c8b314993e5eb3cc2776da0bbe41d5eb4b707b
2023-01-17T12:46:33.3452175Z   Built:            Thu Dec 15 22:17:04 2022
2023-01-17T12:46:33.3452403Z   OS/Arch:          linux/amd64
2023-01-17T12:46:33.3452629Z   Experimental:     false
2023-01-17T12:46:33.3452829Z  containerd:
2023-01-17T12:46:33.3453074Z   Version:          1.5.16+azure-1
2023-01-17T12:46:33.3453337Z   GitCommit:        2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:33.3453553Z  runc:
2023-01-17T12:46:33.3453740Z   Version:          1.1.4
2023-01-17T12:46:33.3454005Z   GitCommit:        5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:33.3454274Z  docker-init:
2023-01-17T12:46:33.3458556Z   Version:          0.19.0
2023-01-17T12:46:33.3462404Z   GitCommit:        
2023-01-17T12:46:33.3491490Z [command]/usr/bin/docker info
2023-01-17T12:46:33.4231732Z Client:
2023-01-17T12:46:33.4232008Z  Context:    default
2023-01-17T12:46:33.4232229Z  Debug Mode: false
2023-01-17T12:46:33.4232420Z  Plugins:
2023-01-17T12:46:33.4233012Z   buildx: Docker Buildx (Docker Inc., 0.9.1+azure-2)
2023-01-17T12:46:33.4233386Z   compose: Docker Compose (Docker Inc., 2.15.1+azure-1)
2023-01-17T12:46:33.4233562Z 
2023-01-17T12:46:33.4233622Z Server:
2023-01-17T12:46:33.4233809Z  Containers: 1
2023-01-17T12:46:33.4234003Z   Running: 1
2023-01-17T12:46:33.4234188Z   Paused: 0
2023-01-17T12:46:33.4235044Z   Stopped: 0
2023-01-17T12:46:33.4235448Z  Images: 19
2023-01-17T12:46:33.4285049Z  Server Version: 20.10.22+azure-1
2023-01-17T12:46:33.4285330Z  Storage Driver: overlay2
2023-01-17T12:46:33.4285565Z   Backing Filesystem: extfs
2023-01-17T12:46:33.4285803Z   Supports d_type: true
2023-01-17T12:46:33.4286031Z   Native Overlay Diff: false
2023-01-17T12:46:33.4286238Z   userxattr: false
2023-01-17T12:46:33.4286500Z  Logging Driver: json-file
2023-01-17T12:46:33.4286726Z  Cgroup Driver: cgroupfs
2023-01-17T12:46:33.4286928Z  Cgroup Version: 2
2023-01-17T12:46:33.4287123Z  Plugins:
2023-01-17T12:46:33.4287315Z   Volume: local
2023-01-17T12:46:33.4287562Z   Network: bridge host ipvlan macvlan null overlay
2023-01-17T12:46:33.4288317Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-01-17T12:46:33.4288630Z  Swarm: inactive
2023-01-17T12:46:33.4288937Z  Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
2023-01-17T12:46:33.4289231Z  Default Runtime: runc
2023-01-17T12:46:33.4289494Z  Init Binary: docker-init
2023-01-17T12:46:33.4289766Z  containerd version: 2e3140a0e09d288a9086474752b4478aa0964e7c
2023-01-17T12:46:33.4290059Z  runc version: 5fd4c4d144137e991c4acebb2146ab1483a97925
2023-01-17T12:46:33.4290308Z  init version: 
2023-01-17T12:46:33.4290514Z  Security Options:
2023-01-17T12:46:33.4290698Z   apparmor
2023-01-17T12:46:33.4290881Z   seccomp
2023-01-17T12:46:33.4291069Z    Profile: default
2023-01-17T12:46:33.4291255Z   cgroupns
2023-01-17T12:46:33.4291513Z  Kernel Version: 5.15.0-1030-azure
2023-01-17T12:46:33.4291759Z  Operating System: Ubuntu 22.04.1 LTS
2023-01-17T12:46:33.4291975Z  OSType: linux
2023-01-17T12:46:33.4292181Z  Architecture: x86_64
2023-01-17T12:46:33.4292384Z  CPUs: 2
2023-01-17T12:46:33.4292565Z  Total Memory: 6.781GiB
2023-01-17T12:46:33.4292809Z  Name: fv-az344-271
2023-01-17T12:46:33.4293080Z  ID: 7S37:5L2Z:PQ45:2BI3:5PJG:U5HY:DQS2:URKV:UJ63:VAJW:OJ7P:OWPY
2023-01-17T12:46:33.4293347Z  Docker Root Dir: /var/lib/docker
2023-01-17T12:46:33.4293567Z  Debug Mode: false
2023-01-17T12:46:33.4293780Z  Username: githubactions
2023-01-17T12:46:33.4294034Z  Registry: https://index.docker.io/v1/
2023-01-17T12:46:33.4294265Z  Labels:
2023-01-17T12:46:33.4294459Z  Experimental: false
2023-01-17T12:46:33.4294662Z  Insecure Registries:
2023-01-17T12:46:33.4294867Z   127.0.0.0/8
2023-01-17T12:46:33.4295075Z  Live Restore Enabled: false
2023-01-17T12:46:33.4295218Z 
2023-01-17T12:46:33.4295678Z ##[endgroup]
2023-01-17T12:46:33.5624655Z ##[group]Buildx version
2023-01-17T12:46:33.5637601Z [command]/usr/bin/docker buildx version
2023-01-17T12:46:33.6354100Z github.com/docker/buildx 0.9.1+azure-2 ed00243a0ce2a0aee75311b06e32d33b44729689
2023-01-17T12:46:33.6377885Z ##[endgroup]
2023-01-17T12:46:33.6488657Z [command]/usr/bin/docker buildx build --iidfile /tmp/docker-build-push-GjoxQp/iidfile --output type=registry,dest=ghcr.io/mqasimsarfraz/test:latest,push=true,compression=uncompressed --tag ghcr.io/mqasimsarfraz/test:latest --metadata-file /tmp/docker-build-push-GjoxQp/metadata-file .
2023-01-17T12:46:34.0253413Z #1 [internal] load .dockerignore
2023-01-17T12:46:34.0254191Z #1 transferring context: 2B done
2023-01-17T12:46:34.0254600Z #1 DONE 0.0s
2023-01-17T12:46:34.0254885Z 
2023-01-17T12:46:34.0302032Z #2 [internal] load build definition from Dockerfile
2023-01-17T12:46:34.0302364Z #2 transferring dockerfile: 334B done
2023-01-17T12:46:34.0302630Z #2 DONE 0.0s
2023-01-17T12:46:34.0302774Z 
2023-01-17T12:46:34.0302953Z #3 [internal] load metadata for docker.io/library/alpine:latest
2023-01-17T12:46:34.1759267Z #3 ...
2023-01-17T12:46:34.1761138Z 
2023-01-17T12:46:34.1762575Z #4 [auth] library/alpine:pull token for registry-1.docker.io
2023-01-17T12:46:34.1764790Z #4 DONE 0.0s
2023-01-17T12:46:34.3272691Z 
2023-01-17T12:46:34.3281863Z #3 [internal] load metadata for docker.io/library/alpine:latest
2023-01-17T12:46:34.6311441Z #3 DONE 0.7s
2023-01-17T12:46:34.6311627Z 
2023-01-17T12:46:34.6311891Z #5 [1/7] FROM docker.io/library/alpine:latest@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a
2023-01-17T12:46:34.6312445Z #5 resolve docker.io/library/alpine:latest@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a done
2023-01-17T12:46:34.7612596Z #5 sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9 3.37MB / 3.37MB 0.2s done
2023-01-17T12:46:34.9118004Z #5 extracting sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9 0.1s done
2023-01-17T12:46:34.9118450Z #5 DONE 0.3s
2023-01-17T12:46:34.9118599Z 
2023-01-17T12:46:34.9118749Z #6 [2/7] RUN dd if=/dev/zero of=f1 bs=1024KB count=500
2023-01-17T12:46:35.3631795Z #6 0.415 500+0 records in
2023-01-17T12:46:35.3632467Z #6 0.415 500+0 records out
2023-01-17T12:46:37.6205827Z #6 DONE 2.7s
2023-01-17T12:46:37.6210405Z 
2023-01-17T12:46:37.6211691Z #7 [3/7] RUN dd if=/dev/zero of=f2 bs=1024KB count=500
2023-01-17T12:46:38.0724652Z #7 0.420 500+0 records in
2023-01-17T12:46:38.0724952Z #7 0.420 500+0 records out
2023-01-17T12:46:40.1784364Z #7 DONE 2.6s
2023-01-17T12:46:40.1784560Z 
2023-01-17T12:46:40.1784703Z #8 [4/7] RUN dd if=/dev/zero of=f3 bs=1024KB count=500
2023-01-17T12:46:40.6297565Z #8 0.427 500+0 records in
2023-01-17T12:46:40.6299035Z #8 0.427 500+0 records out
2023-01-17T12:46:42.7283636Z #8 DONE 2.6s
2023-01-17T12:46:42.8791002Z 
2023-01-17T12:46:42.8791469Z #9 [5/7] RUN dd if=/dev/zero of=f4 bs=1024KB count=500
2023-01-17T12:46:43.1486658Z #9 0.418 500+0 records in
2023-01-17T12:46:43.1486953Z #9 0.418 500+0 records out
2023-01-17T12:46:45.4057861Z #9 DONE 2.6s
2023-01-17T12:46:45.4058118Z 
2023-01-17T12:46:45.4058278Z #10 [6/7] RUN dd if=/dev/zero of=f5 bs=1024KB count=500
2023-01-17T12:46:45.8573318Z #10 0.414 500+0 records in
2023-01-17T12:46:45.8573630Z #10 0.414 500+0 records out
2023-01-17T12:46:47.9377622Z #10 DONE 2.6s
2023-01-17T12:46:48.0886115Z 
2023-01-17T12:46:48.0886911Z #11 [7/7] RUN dd if=/dev/zero of=f5 bs=1024KB count=500
2023-01-17T12:46:50.0444678Z #11 1.975 500+0 records in
2023-01-17T12:46:50.0445134Z #11 1.975 500+0 records out
2023-01-17T12:46:50.6462680Z #11 DONE 2.6s
2023-01-17T12:46:50.6462855Z 
2023-01-17T12:46:50.6462956Z #12 exporting to image
2023-01-17T12:46:50.6463163Z #12 exporting layers
2023-01-17T12:47:07.9194329Z #12 exporting layers 17.4s done
2023-01-17T12:47:07.9194922Z #12 exporting manifest sha256:9a79b1f9b7520356873992e8180b4f7e819db555b611603f095db9e457bbc8b5
2023-01-17T12:47:08.0425309Z #12 exporting manifest sha256:9a79b1f9b7520356873992e8180b4f7e819db555b611603f095db9e457bbc8b5 done
2023-01-17T12:47:08.0426075Z #12 exporting config sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e done
2023-01-17T12:47:08.0426905Z #12 pushing layers
2023-01-17T12:47:08.0427295Z #12 ...
2023-01-17T12:47:08.0427437Z 
2023-01-17T12:47:08.0427598Z #13 [auth] mqasimsarfraz/test:pull,push token for ghcr.io
2023-01-17T12:47:08.1925755Z #13 DONE 0.0s
2023-01-17T12:47:08.1926016Z 
2023-01-17T12:47:08.1926134Z #12 exporting to image
2023-01-17T12:47:08.9692365Z #12 pushing layers 1.0s done
2023-01-17T12:47:08.9692802Z #12 ERROR: failed to push ghcr.io/mqasimsarfraz/test:latest: failed to copy: io: read/write on closed pipe
2023-01-17T12:47:08.9693448Z ------
2023-01-17T12:47:08.9693651Z  > exporting to image:
2023-01-17T12:47:08.9693876Z ------
2023-01-17T12:47:08.9712397Z ERROR: failed to solve: failed to push ghcr.io/mqasimsarfraz/test:latest: failed to copy: io: read/write on closed pipe
2023-01-17T12:47:08.9810964Z ##[error]buildx failed with: ERROR: failed to solve: failed to push ghcr.io/mqasimsarfraz/test:latest: failed to copy: io: read/write on closed pipe
2023-01-17T12:47:08.9922599Z Post job cleanup.
2023-01-17T12:47:09.1003524Z ##[group]Removing temp folder /tmp/docker-build-push-GjoxQp
2023-01-17T12:47:09.1015240Z ##[endgroup]
2023-01-17T12:47:09.1106784Z Post job cleanup.
2023-01-17T12:47:09.2367919Z [command]/usr/bin/docker logout ghcr.io
2023-01-17T12:47:09.2592253Z Removing login credentials for ghcr.io
2023-01-17T12:47:09.2705454Z Post job cleanup.
2023-01-17T12:47:09.3535358Z ##[group]BuildKit container logs
2023-01-17T12:47:09.3582676Z [command]/usr/bin/docker logs buildx_buildkit_builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e0
2023-01-17T12:47:09.3836735Z time="2023-01-17T12:46:31Z" level=info msg="auto snapshotter: using overlayfs"
2023-01-17T12:47:09.3840753Z time="2023-01-17T12:46:31Z" level=warning msg="using host network as the default"
2023-01-17T12:47:09.3843723Z time="2023-01-17T12:46:31Z" level=info msg="found worker \"l12qtfa7zzzq9k93pm9q0phu1\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:c85ad570a268 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/amd64/v4 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]"
2023-01-17T12:47:09.3845228Z time="2023-01-17T12:46:31Z" level=warning msg="skipping containerd worker, as \"/run/containerd/containerd.sock\" does not exist"
2023-01-17T12:47:09.3846069Z time="2023-01-17T12:46:31Z" level=info msg="found 1 workers, default=\"l12qtfa7zzzq9k93pm9q0phu1\""
2023-01-17T12:47:09.3846849Z time="2023-01-17T12:46:31Z" level=warning msg="currently, only the default worker can be used."
2023-01-17T12:47:09.3850498Z time="2023-01-17T12:46:31Z" level=info msg="running server on /run/buildkit/buildkitd.sock"
2023-01-17T12:47:09.3853081Z time="2023-01-17T12:46:33Z" level=debug msg="session started" spanID=3aca552c9f3347e4 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3853976Z time="2023-01-17T12:46:33Z" level=debug msg="session finished: <nil>" spanID=3aca552c9f3347e4 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3855944Z time="2023-01-17T12:46:33Z" level=debug msg="session started" spanID=ca50360d1b63f862 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3858175Z time="2023-01-17T12:46:33Z" level=debug msg="new ref for local: djt3tpumzoist7cjye6ddul1u" span="[internal] load .dockerignore" spanID=c005bf5c82c3bf41 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3859173Z time="2023-01-17T12:46:33Z" level=debug msg="new ref for local: lv26qq4hnn7u7g9jacvtqfdl1" span="[internal] load build definition from Dockerfile" spanID=9bdb8b64046294b2 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3860061Z time="2023-01-17T12:46:33Z" level=debug msg="diffcopy took: 3.407431ms" span="[internal] load .dockerignore" spanID=6770178db636fe3b traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3861391Z time="2023-01-17T12:46:33Z" level=debug msg="diffcopy took: 3.566933ms" span="[internal] load build definition from Dockerfile" spanID=2791bb7823fde087 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3862618Z time="2023-01-17T12:46:33Z" level=debug msg="saved djt3tpumzoist7cjye6ddul1u as context:context-.dockerignore:buildx:1c36a5f405ab7da4" span="[internal] load .dockerignore" spanID=c005bf5c82c3bf41 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3863888Z time="2023-01-17T12:46:33Z" level=debug msg="saved lv26qq4hnn7u7g9jacvtqfdl1 as dockerfile:dockerfile:buildx:1c36a5f405ab7da4" span="[internal] load build definition from Dockerfile" spanID=9bdb8b64046294b2 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3864848Z time="2023-01-17T12:46:33Z" level=debug msg=resolving host=registry-1.docker.io spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3866920Z time="2023-01-17T12:46:33Z" level=debug msg="do request" host=registry-1.docker.io request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/latest"
2023-01-17T12:47:09.3870004Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" host=registry-1.docker.io response.header.content-length=157 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-ratelimit-source=40.83.43.49 response.header.strict-transport-security="max-age=31536000" response.header.www-authenticate="***"https://auth.docker.io/token\",service=\"registry.docker.io\",scope=\"repository:library/alpine:pull\"" response.status="401 Unauthorized" spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/latest"
2023-01-17T12:47:09.3872268Z time="2023-01-17T12:46:34Z" level=debug msg=Unauthorized header="***"https://auth.docker.io/token\",service=\"registry.docker.io\",scope=\"repository:library/alpine:pull\"" host=registry-1.docker.io spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3879207Z time="2023-01-17T12:46:34Z" level=debug msg="do request" host=registry-1.docker.io request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/latest"
2023-01-17T12:47:09.3882427Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" host=registry-1.docker.io response.header.content-length=1638 response.header.content-type=application/vnd.docker.distribution.manifest.list.v2+json response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.docker-content-digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-ratelimit-source=40.83.43.49 response.header.etag="\"sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a\"" response.header.strict-transport-security="max-age=31536000" response.status="200 OK" spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/latest"
2023-01-17T12:47:09.3885124Z time="2023-01-17T12:46:34Z" level=debug msg=resolved desc.digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" host=registry-1.docker.io spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3886673Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" mediatype=application/vnd.docker.distribution.manifest.list.v2+json size=1638 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3888743Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" mediatype=application/vnd.docker.distribution.manifest.list.v2+json request.header.accept="application/vnd.docker.distribution.manifest.list.v2+json, */*" request.header.user-agent=buildkit/v0.11 request.method=GET size=1638 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a"
2023-01-17T12:47:09.3892428Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" mediatype=application/vnd.docker.distribution.manifest.list.v2+json response.header.content-length=1638 response.header.content-type=application/vnd.docker.distribution.manifest.list.v2+json response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.docker-content-digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-ratelimit-source=40.83.43.49 response.header.etag="\"sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a\"" response.header.strict-transport-security="max-age=31536000" response.status="200 OK" size=1638 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a"
2023-01-17T12:47:09.3895072Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3" mediatype=application/vnd.docker.distribution.manifest.v2+json size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3896275Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0" mediatype=application/vnd.docker.distribution.manifest.v2+json size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3898104Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=buildkit/v0.11 request.method=GET size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3"
2023-01-17T12:47:09.3900317Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=buildkit/v0.11 request.method=GET size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0"
2023-01-17T12:47:09.3903778Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=528 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.docker-content-digest="sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-ratelimit-source=40.83.43.49 response.header.etag="\"sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3\"" response.header.strict-transport-security="max-age=31536000" response.status="200 OK" size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:14d4381342be1cab4adc3d5288a279a8a2fc665907363e1dce510bec52f29af3"
2023-01-17T12:47:09.3906160Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:f106dae6f3630d726e4097289b182175aa475b850a042b785bc088381f3d641d" mediatype=application/vnd.docker.container.image.v1+json size=1470 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3907984Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:f106dae6f3630d726e4097289b182175aa475b850a042b785bc088381f3d641d" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=GET size=1470 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:f106dae6f3630d726e4097289b182175aa475b850a042b785bc088381f3d641d"
2023-01-17T12:47:09.3911276Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=528 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.docker-content-digest="sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-ratelimit-source=40.83.43.49 response.header.etag="\"sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0\"" response.header.strict-transport-security="max-age=31536000" response.status="200 OK" size=528 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/manifests/sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0"
2023-01-17T12:47:09.3913508Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769" mediatype=application/vnd.docker.container.image.v1+json size=1472 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3915330Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=GET size=1472 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769"
2023-01-17T12:47:09.3919300Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:f106dae6f3630d726e4097289b182175aa475b850a042b785bc088381f3d641d" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=674952 response.header.cache-control="public, max-age=14400" response.header.cf-cache-status=HIT response.header.cf-ray=78af31c9af4566fb-DFW response.header.connection=keep-alive response.header.content-length=1470 response.header.content-type=application/octet-stream response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.etag="\"0edcc2c934bf9f0ae23df85ed056c2c5\"" response.header.expires="Tue, 17 Jan 2023 16:46:34 GMT" response.header.last-modified="Mon, 09 Jan 2023 17:05:44 GMT" response.header.server=cloudflare response.header.vary=Accept-Encoding response.header.x-amz-id-2="n61ROJI+aLSumhMKBvrMvtgfsDbGC+N0Knd0qj92ifsZSUqeJIaw4AVEmG5MQPn+9BTQUHVRN5s=" response.header.x-amz-request-id=JBB18Z150C7VY1M8 response.header.x-amz-version-id=UpFM2yhA.tXxSK4R86IonLiFFIBqgyL_ response.status="200 OK" size=1470 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:f106dae6f3630d726e4097289b182175aa475b850a042b785bc088381f3d641d"
2023-01-17T12:47:09.3924682Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=675013 response.header.cache-control="public, max-age=14400" response.header.cf-cache-status=HIT response.header.cf-ray=78af31c9df6766fb-DFW response.header.connection=keep-alive response.header.content-length=1472 response.header.content-type=application/octet-stream response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.etag="\"e6973640d89a1d644f62baf9d3310e88\"" response.header.expires="Tue, 17 Jan 2023 16:46:34 GMT" response.header.last-modified="Mon, 09 Jan 2023 17:05:47 GMT" response.header.server=cloudflare response.header.vary=Accept-Encoding response.header.x-amz-id-2="G2gmHosOPHFXK/KxeoukW7YxR3Ce1m3Sgu/mlrzhPOP5fSDwLaG9VX4pwdCmvA5JF0tnMRohRzY=" response.header.x-amz-request-id=JBBDZRR97DZWY5DS response.header.x-amz-version-id=Bkxpe8mXnevXMZvi47navV7s0lKAgQyC response.status="200 OK" size=1472 spanID=56ca97525ebc3774 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769"
2023-01-17T12:47:09.3927538Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a" mediatype=application/vnd.docker.distribution.manifest.list.v2+json size=1638 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3928743Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0" mediatype=application/vnd.docker.distribution.manifest.v2+json size=528 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3929916Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:042a816809aac8d0f7d7cacac7965782ee2ecac3f21bcf9f24b1de1a7387b769" mediatype=application/vnd.docker.container.image.v1+json size=1472 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3931082Z time="2023-01-17T12:46:34Z" level=debug msg=fetch digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3932893Z time="2023-01-17T12:46:34Z" level=debug msg="do request" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip request.header.accept="application/vnd.docker.image.rootfs.diff.tar.gzip, */*" request.header.user-agent=containerd/1.6.14+unknown request.method=GET size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.3936804Z time="2023-01-17T12:46:34Z" level=debug msg="fetch response received" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip response.header.accept-ranges=bytes response.header.age=675040 response.header.cache-control="public, max-age=14400" response.header.cf-cache-status=HIT response.header.cf-ray=78af31ca6fed66fb-DFW response.header.connection=keep-alive response.header.content-length=3370628 response.header.content-type=application/octet-stream response.header.date="Tue, 17 Jan 2023 12:46:34 GMT" response.header.etag="\"d9446b1f44ec78b93885e550b7eb4b0a\"" response.header.expires="Tue, 17 Jan 2023 16:46:34 GMT" response.header.last-modified="Mon, 09 Jan 2023 17:05:45 GMT" response.header.server=cloudflare response.header.vary=Accept-Encoding response.header.x-amz-id-2="VTZGVXquBRlSXoedO2kcvgX4bTL+UNwCOjGlb6HijVeHkz/NDveI9cYTLARIjQ0U40tLTP5VehI=" response.header.x-amz-request-id=RFBQ35PJFMPHYFH2 response.header.x-amz-version-id=grgDROimLL45CwI2HyURa1_uSYaX7uLx response.status="200 OK" size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://registry-1.docker.io/v2/library/alpine/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.3939246Z time="2023-01-17T12:46:34Z" level=debug msg="using pigz for decompression"
2023-01-17T12:47:09.3940275Z time="2023-01-17T12:46:34Z" level=debug msg="diff applied" d=71.968489ms digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" media=application/vnd.docker.image.rootfs.diff.tar.gzip size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3944738Z time="2023-01-17T12:46:34Z" level=debug msg="> creating w7tk3t1gmwvxblh4p061qe7j7 [/bin/sh -c dd if=/dev/zero of=f1 bs=1024KB count=500]" span="[2/7] RUN dd if=/dev/zero of=f1 bs=1024KB count=500" spanID=370c2ecedd16e8aa traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3946016Z time="2023-01-17T12:46:37Z" level=debug msg="> creating q8mzowwecp09vkmvh6fwrqiu0 [/bin/sh -c dd if=/dev/zero of=f2 bs=1024KB count=500]" span="[3/7] RUN dd if=/dev/zero of=f2 bs=1024KB count=500" spanID=57f9b7c094563933 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3946993Z time="2023-01-17T12:46:38Z" level=debug msg="healthcheck completed" actualDuration=1.412712ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3948156Z time="2023-01-17T12:46:40Z" level=debug msg="> creating ohempjryeiks4s920gq33oik5 [/bin/sh -c dd if=/dev/zero of=f3 bs=1024KB count=500]" span="[4/7] RUN dd if=/dev/zero of=f3 bs=1024KB count=500" spanID=9ed9dd5b5976e22d traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3949247Z time="2023-01-17T12:46:42Z" level=debug msg="> creating xhik11o8jrn16cvt6cvzcug6l [/bin/sh -c dd if=/dev/zero of=f4 bs=1024KB count=500]" span="[5/7] RUN dd if=/dev/zero of=f4 bs=1024KB count=500" spanID=96bb613854fdb28d traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3950198Z time="2023-01-17T12:46:43Z" level=debug msg="healthcheck completed" actualDuration=1.074907ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3951311Z time="2023-01-17T12:46:45Z" level=debug msg="> creating n4e77t0296mv9nv5koracwhc8 [/bin/sh -c dd if=/dev/zero of=f5 bs=1024KB count=500]" span="[6/7] RUN dd if=/dev/zero of=f5 bs=1024KB count=500" spanID=60d80fca7390b48e traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3954621Z time="2023-01-17T12:46:47Z" level=debug msg="> creating elhfpb6a56zxvak03sxqcffpj [/bin/sh -c dd if=/dev/zero of=f5 bs=1024KB count=500]" span="[7/7] RUN dd if=/dev/zero of=f5 bs=1024KB count=500" spanID=4ea210780a98a65d traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3955395Z time="2023-01-17T12:46:48Z" level=debug msg="healthcheck completed" actualDuration=1.473909ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3956105Z time="2023-01-17T12:46:53Z" level=debug msg="healthcheck completed" actualDuration=111.015893ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3956822Z time="2023-01-17T12:46:58Z" level=debug msg="healthcheck completed" actualDuration=54.984473ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3957712Z time="2023-01-17T12:47:03Z" level=debug msg="healthcheck completed" actualDuration=1.394514ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3958663Z time="2023-01-17T12:47:07Z" level=debug msg=push digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3960051Z time="2023-01-17T12:47:07Z" level=debug msg="checking and pushing to" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.3961973Z time="2023-01-17T12:47:07Z" level=debug msg="do request" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.3963409Z time="2023-01-17T12:47:07Z" level=debug msg=push digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3964809Z time="2023-01-17T12:47:07Z" level=debug msg="checking and pushing to" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.3966677Z time="2023-01-17T12:47:07Z" level=debug msg="do request" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.3968122Z time="2023-01-17T12:47:07Z" level=debug msg=push digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3969522Z time="2023-01-17T12:47:07Z" level=debug msg="checking and pushing to" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.3971353Z time="2023-01-17T12:47:07Z" level=debug msg="do request" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip request.header.accept="application/vnd.docker.image.rootfs.diff.tar.gzip, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.3972843Z time="2023-01-17T12:47:07Z" level=debug msg=push digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3974214Z time="2023-01-17T12:47:07Z" level=debug msg="checking and pushing to" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.3976038Z time="2023-01-17T12:47:07Z" level=debug msg="do request" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.3977483Z time="2023-01-17T12:47:07Z" level=debug msg=push digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3978906Z time="2023-01-17T12:47:07Z" level=debug msg="checking and pushing to" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.3980720Z time="2023-01-17T12:47:07Z" level=debug msg="do request" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.3983567Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json response.header.content-length=73 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.www-authenticate="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" response.header.x-github-request-id="0C42:9B3B:1AEE3AF:29573E0:63C698CB" response.status="401 Unauthorized" size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.3985611Z time="2023-01-17T12:47:08Z" level=debug msg=Unauthorized digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" header="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" mediatype=application/vnd.docker.container.image.v1+json size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3987446Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.3990158Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=73 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.www-authenticate="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" response.header.x-github-request-id="0C41:7C19:18F7531:275F71B:63C698CB" response.status="401 Unauthorized" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.3992263Z time="2023-01-17T12:47:08Z" level=debug msg=Unauthorized digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" header="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3994680Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=73 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.www-authenticate="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" response.header.x-github-request-id="0C43:0B13:40E0A8:6758AC:63C698CB" response.status="401 Unauthorized" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.3996684Z time="2023-01-17T12:47:08Z" level=debug msg=Unauthorized digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" header="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.3999073Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=73 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.www-authenticate="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" response.header.x-github-request-id="0C40:498F:19777F7:27DFE05:63C698CB" response.status="401 Unauthorized" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.4001106Z time="2023-01-17T12:47:08Z" level=debug msg=Unauthorized digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" header="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4003506Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip response.header.content-length=73 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.www-authenticate="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" response.header.x-github-request-id="0C44:57F5:188A9D7:26F261A:63C698CB" response.status="401 Unauthorized" size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.4007824Z time="2023-01-17T12:47:08Z" level=debug msg=Unauthorized digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" header="***"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:mqasimsarfraz/test:pull\"" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4009969Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.4012010Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.4014029Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.4016046Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip request.header.accept="application/vnd.docker.image.rootfs.diff.tar.gzip, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.4019051Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip response.header.content-length=3370628 response.header.content-type=application/vnd.oci.image.layer.v1.tar+gzip response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-content-digest="sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9" response.header.docker-distribution-api-version=registry/2.0 response.header.etag="\"sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9\"" response.header.x-github-request-id="0C42:9B3B:1AEE3BA:29573EE:63C698CC" response.status="200 OK" size=3370628 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9"
2023-01-17T12:47:09.4021148Z time="2023-01-17T12:47:08Z" level=debug msg=push digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4022597Z time="2023-01-17T12:47:08Z" level=debug msg="checking and pushing to" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045"
2023-01-17T12:47:09.4024801Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045"
2023-01-17T12:47:09.4027270Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=74 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.x-github-request-id="0C41:7C19:18F7539:275F725:63C698CC" response.status="404 Not Found" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.4029213Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.user-agent=buildkit/v0.11 request.method=POST size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4031427Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=74 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.x-github-request-id="0C43:0B13:40E0B2:6758B9:63C698CC" response.status="404 Not Found" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.4033356Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.user-agent=buildkit/v0.11 request.method=POST size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4035580Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=74 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.x-github-request-id="0C40:498F:19777FC:27DFE0F:63C698CC" response.status="404 Not Found" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.4037591Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.user-agent=buildkit/v0.11 request.method=POST size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4039869Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json response.header.content-length=74 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.x-github-request-id="0C41:0349:16E447F:254AC3D:63C698CC" response.status="404 Not Found" size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.4041849Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json request.header.user-agent=buildkit/v0.11 request.method=POST size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4044130Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=74 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.x-github-request-id="0C42:9B3B:1AEE3BE:29573F6:63C698CC" response.status="404 Not Found" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045"
2023-01-17T12:47:09.4046122Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.user-agent=buildkit/v0.11 request.method=POST size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4048655Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=0 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-upload-uuid=1656ca07-21cc-4743-9f68-ce3d19abb735 response.header.location=/v2/mqasimsarfraz/test/blobs/upload/1656ca07-21cc-4743-9f68-ce3d19abb735 response.header.range=0-0 response.header.x-github-request-id="0C43:0B13:40E0B5:6758BE:63C698CC" response.status="202 Accepted" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4051166Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:d449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.content-type=application/octet-stream request.header.user-agent=buildkit/v0.11 request.method=PUT size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/upload/1656ca07-21cc-4743-9f68-ce3d19abb735?digest=sha256%3Ad449c8efb434f16d96fc3c9aa7f47c6905667227c74185e87b9c9ed1e599564d"
2023-01-17T12:47:09.4054013Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=0 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-upload-uuid=9cfa6af4-8f90-4de2-9f46-0c2d09d72a1f response.header.location=/v2/mqasimsarfraz/test/blobs/upload/9cfa6af4-8f90-4de2-9f46-0c2d09d72a1f response.header.range=0-0 response.header.x-github-request-id="0C40:498F:19777FE:27DFE1A:63C698CC" response.status="202 Accepted" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4056551Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.content-type=application/octet-stream request.header.user-agent=buildkit/v0.11 request.method=PUT size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/upload/9cfa6af4-8f90-4de2-9f46-0c2d09d72a1f?digest=sha256%3A84fa5b5bc2f43488db60a49085c7b1d7d11b412ae3836b1de8d23191bbb1fe6f"
2023-01-17T12:47:09.4059282Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=0 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-upload-uuid=449ee957-2cd1-46b3-844b-1554cca93496 response.header.location=/v2/mqasimsarfraz/test/blobs/upload/449ee957-2cd1-46b3-844b-1554cca93496 response.header.range=0-0 response.header.x-github-request-id="0C41:7C19:18F753D:275F72F:63C698CC" response.status="202 Accepted" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4061786Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.content-type=application/octet-stream request.header.user-agent=buildkit/v0.11 request.method=PUT size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/upload/449ee957-2cd1-46b3-844b-1554cca93496?digest=sha256%3A340a25e8ffdf755819f28ba67939c6a02cf7da22453c31c2f78ca3f30dd6b93e"
2023-01-17T12:47:09.4064764Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar response.header.content-length=0 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-upload-uuid=1c66242f-5d4f-40ae-940b-b3f5625b27b2 response.header.location=/v2/mqasimsarfraz/test/blobs/upload/1c66242f-5d4f-40ae-940b-b3f5625b27b2 response.header.range=0-0 response.header.x-github-request-id="0C42:9B3B:1AEE3C2:29573F9:63C698CC" response.status="202 Accepted" size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4067409Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:fee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.content-type=application/octet-stream request.header.user-agent=buildkit/v0.11 request.method=PUT size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/upload/1c66242f-5d4f-40ae-940b-b3f5625b27b2?digest=sha256%3Afee96fec702a7c8fe628fd22824eca3f3fdce6c025facce1bd86531a39bce045"
2023-01-17T12:47:09.4070256Z time="2023-01-17T12:47:08Z" level=debug msg="fetch response received" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json response.header.content-length=0 response.header.content-type=application/json response.header.date="Tue, 17 Jan 2023 12:47:08 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.docker-upload-uuid=562c89dd-e627-4795-a772-fe52def2c46e response.header.location=/v2/mqasimsarfraz/test/blobs/upload/562c89dd-e627-4795-a772-fe52def2c46e response.header.range=0-0 response.header.x-github-request-id="0C41:0349:16E4482:254AC40:63C698CC" response.status="202 Accepted" size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/uploads/"
2023-01-17T12:47:09.4072805Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:a07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e" mediatype=application/vnd.docker.container.image.v1+json request.header.content-type=application/octet-stream request.header.user-agent=buildkit/v0.11 request.method=PUT size=2302 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/upload/562c89dd-e627-4795-a772-fe52def2c46e?digest=sha256%3Aa07b6db6da4fc98fff45d87c67715ef171d498feb0c8d804278c08840321817e"
2023-01-17T12:47:09.4074055Z time="2023-01-17T12:47:08Z" level=debug msg="healthcheck completed" actualDuration=1.21211ms spanID=ca50360d1b63f862 timeout=30s traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4075009Z time="2023-01-17T12:47:08Z" level=debug msg=push digest="sha256:161d322506fcd366567891ca473f55b8a74d95dcb52fba9b7d24fc3ec6a80387" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4076373Z time="2023-01-17T12:47:08Z" level=debug msg="checking and pushing to" digest="sha256:161d322506fcd366567891ca473f55b8a74d95dcb52fba9b7d24fc3ec6a80387" mediatype=application/vnd.docker.image.rootfs.diff.tar size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:161d322506fcd366567891ca473f55b8a74d95dcb52fba9b7d24fc3ec6a80387"
2023-01-17T12:47:09.4078212Z time="2023-01-17T12:47:08Z" level=debug msg="do request" digest="sha256:161d322506fcd366567891ca473f55b8a74d95dcb52fba9b7d24fc3ec6a80387" mediatype=application/vnd.docker.image.rootfs.diff.tar request.header.accept="application/vnd.docker.image.rootfs.diff.tar, */*" request.header.user-agent=buildkit/v0.11 request.method=HEAD size=512001536 spanID=a957607f2bb1b8bf traceID=8a2ddde7bc398d693b8e3dc9e3d0274b url="https://ghcr.io/v2/mqasimsarfraz/test/blobs/sha256:161d322506fcd366567891ca473f55b8a74d95dcb52fba9b7d24fc3ec6a80387"
2023-01-17T12:47:09.4079504Z time="2023-01-17T12:47:08Z" level=error msg="/moby.buildkit.v1.Control/Solve returned error: rpc error: code = Unknown desc = failed to push ghcr.io/mqasimsarfraz/test:latest: failed to copy: io: read/write on closed pipe"
2023-01-17T12:47:09.4080037Z failed to push ghcr.io/mqasimsarfraz/test:latest: failed to copy: io: read/write on closed pipe
2023-01-17T12:47:09.4080397Z 1 v0.11.0 buildkitd --debug
2023-01-17T12:47:09.4080785Z github.com/moby/buildkit/exporter/containerimage.(*imageExporterInstance).Export
2023-01-17T12:47:09.4081123Z 	/src/exporter/containerimage/export.go:310
2023-01-17T12:47:09.4081436Z github.com/moby/buildkit/solver/llbsolver.(*Solver).Solve.func7
2023-01-17T12:47:09.4081733Z 	/src/solver/llbsolver/solver.go:532
2023-01-17T12:47:09.4082053Z github.com/moby/buildkit/solver/llbsolver.inBuilderContext.func1
2023-01-17T12:47:09.4082355Z 	/src/solver/llbsolver/solver.go:903
2023-01-17T12:47:09.4082628Z github.com/moby/buildkit/solver.(*Job).InContext
2023-01-17T12:47:09.4083027Z 	/src/solver/jobs.go:611
2023-01-17T12:47:09.4083316Z github.com/moby/buildkit/solver/llbsolver.inBuilderContext
2023-01-17T12:47:09.4083600Z 	/src/solver/llbsolver/solver.go:899
2023-01-17T12:47:09.4083888Z github.com/moby/buildkit/solver/llbsolver.(*Solver).Solve
2023-01-17T12:47:09.4084169Z 	/src/solver/llbsolver/solver.go:531
2023-01-17T12:47:09.4084452Z github.com/moby/buildkit/control.(*Controller).Solve
2023-01-17T12:47:09.4084710Z 	/src/control/control.go:420
2023-01-17T12:47:09.4085016Z github.com/moby/buildkit/api/services/control._Control_Solve_Handler.func1
2023-01-17T12:47:09.4085343Z 	/src/api/services/control/control.pb.go:2429
2023-01-17T12:47:09.4085852Z github.com/grpc-ecosystem/go-grpc-middleware.ChainUnaryServer.func1.1.1
2023-01-17T12:47:09.4086346Z 	/src/vendor/github.com/grpc-ecosystem/go-grpc-middleware/chain.go:25
2023-01-17T12:47:09.4086799Z go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.UnaryServerInterceptor.func1
2023-01-17T12:47:09.4087296Z 	/src/vendor/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/interceptor.go:325
2023-01-17T12:47:09.4087665Z main.unaryInterceptor.func1
2023-01-17T12:47:09.4087933Z 	/src/cmd/buildkitd/main.go:572
2023-01-17T12:47:09.4088354Z github.com/grpc-ecosystem/go-grpc-middleware.ChainUnaryServer.func1.1.1
2023-01-17T12:47:09.4088820Z 	/src/vendor/github.com/grpc-ecosystem/go-grpc-middleware/chain.go:25
2023-01-17T12:47:09.4089284Z github.com/grpc-ecosystem/go-grpc-middleware.ChainUnaryServer.func1
2023-01-17T12:47:09.4089750Z 	/src/vendor/github.com/grpc-ecosystem/go-grpc-middleware/chain.go:34
2023-01-17T12:47:09.4090097Z github.com/moby/buildkit/api/services/control._Control_Solve_Handler
2023-01-17T12:47:09.4090411Z 	/src/api/services/control/control.pb.go:2431
2023-01-17T12:47:09.4090707Z google.golang.org/grpc.(*Server).processUnaryRPC
2023-01-17T12:47:09.4091001Z 	/src/vendor/google.golang.org/grpc/server.go:1340
2023-01-17T12:47:09.4091292Z google.golang.org/grpc.(*Server).handleStream
2023-01-17T12:47:09.4091582Z 	/src/vendor/google.golang.org/grpc/server.go:1713
2023-01-17T12:47:09.4091890Z google.golang.org/grpc.(*Server).serveStreams.func1.2
2023-01-17T12:47:09.4092185Z 	/src/vendor/google.golang.org/grpc/server.go:965
2023-01-17T12:47:09.4092436Z runtime.goexit
2023-01-17T12:47:09.4092671Z 	/usr/local/go/src/runtime/asm_amd64.s:1594
2023-01-17T12:47:09.4092816Z 
2023-01-17T12:47:09.4092957Z 1 v0.11.0 buildkitd --debug
2023-01-17T12:47:09.4093196Z main.unaryInterceptor.func1
2023-01-17T12:47:09.4093441Z 	/src/cmd/buildkitd/main.go:576
2023-01-17T12:47:09.4093846Z github.com/grpc-ecosystem/go-grpc-middleware.ChainUnaryServer.func1.1.1
2023-01-17T12:47:09.4094326Z 	/src/vendor/github.com/grpc-ecosystem/go-grpc-middleware/chain.go:25
2023-01-17T12:47:09.4094790Z github.com/grpc-ecosystem/go-grpc-middleware.ChainUnaryServer.func1
2023-01-17T12:47:09.4095243Z 	/src/vendor/github.com/grpc-ecosystem/go-grpc-middleware/chain.go:34
2023-01-17T12:47:09.4095599Z github.com/moby/buildkit/api/services/control._Control_Solve_Handler
2023-01-17T12:47:09.4095914Z 	/src/api/services/control/control.pb.go:2431
2023-01-17T12:47:09.4096208Z google.golang.org/grpc.(*Server).processUnaryRPC
2023-01-17T12:47:09.4096500Z 	/src/vendor/google.golang.org/grpc/server.go:1340
2023-01-17T12:47:09.4096791Z google.golang.org/grpc.(*Server).handleStream
2023-01-17T12:47:09.4097083Z 	/src/vendor/google.golang.org/grpc/server.go:1713
2023-01-17T12:47:09.4097451Z google.golang.org/grpc.(*Server).serveStreams.func1.2
2023-01-17T12:47:09.4097757Z 	/src/vendor/google.golang.org/grpc/server.go:965
2023-01-17T12:47:09.4098001Z runtime.goexit
2023-01-17T12:47:09.4098223Z 	/usr/local/go/src/runtime/asm_amd64.s:1594
2023-01-17T12:47:09.4098380Z 
2023-01-17T12:47:09.4098760Z time="2023-01-17T12:47:08Z" level=debug msg="session finished: <nil>" spanID=ca50360d1b63f862 traceID=8a2ddde7bc398d693b8e3dc9e3d0274b
2023-01-17T12:47:09.4099540Z ##[endgroup]
2023-01-17T12:47:09.4099911Z ##[group]Removing builder
2023-01-17T12:47:09.4100347Z [command]/usr/bin/docker buildx rm builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e
2023-01-17T12:47:10.2805207Z builder-c4ad35bc-2f73-4cdb-bc66-39379270ad3e removed
2023-01-17T12:47:10.2813570Z ##[endgroup]
2023-01-17T12:47:10.2814589Z Cleaning up credentials
2023-01-17T12:47:10.3009975Z Cleaning up orphan processes

Not sure if this explains the root cause but please let me know if you think we can try something else? Also I did couple of runs with v0.10.6 (both passed) vs v0.11.0 (both failed) so this means the workaround seems to be working fine.

@xcfw
Copy link

xcfw commented Jan 17, 2023

Same happens to my deploys every other time since 3.2.0, and restarting failed jobs helped all the time until today, we had to revert the changes from prod in order to fix the issue. Think this issue is pretty critical, in the meantime I'll downgrade moby driver or action. We push to ghcr and heroku, and heroku caused most of issues after 3.2.0 update, not being able to accept images with provenance and manifests.

@vinayakkulkarni
Copy link

Been facing similar issue while pushing to ghcr.io

@moritzheiber
Copy link

I can confirm that pipelines previously failing to push to ghcr.io are now reliable again after adding

        with:
          driver-opts: |
            image=moby/buildkit:v0.10.6

to my workflow(s).

@tomdot-dev
Copy link
Author

@tomdot-dev If you could also enable debug, that would help:
...
https://docs.docker.com/build/ci/github-actions/configure-builder/#buildkit-container-logs

@crazy-max: Done.

troian added a commit to troian/pihole that referenced this issue Jan 17, 2023
see docker/build-push-action#761

Signed-off-by: Artur Troian <troian.ap@gmail.com>
troian added a commit to troian/pihole that referenced this issue Jan 17, 2023
see docker/build-push-action#761

Signed-off-by: Artur Troian <troian.ap@gmail.com>
@saiskee
Copy link

saiskee commented Jan 17, 2023

Facing similar issue when trying to push to gcr.io from ubuntu-latest when using docker buildx --push

@lifeforms
Copy link

We're having the same intermittent problem since the 12th of January. It seems to be random which images fail with this error. Re-running the jobs, sometimes a few times, makes it succeed.

@shawaj
Copy link

shawaj commented Jan 17, 2023

We are having this issue as well:

Error: buildx failed with: ERROR: failed to solve: failed to push ghcr.io/nebraltd/hm-diag:f3bc9e2: failed to copy: io: read/write on closed pipe

Here is full logs...
https://github.com/NebraLtd/hm-diag/actions/runs/3943231753/jobs/6747835162

And

logs_6973.zip

It only happens on ghcr.io not on dockerhub. And only seems to be for larger containers. We have several that take 2 to 5 minutes to build that are always fine. The ones that take 10+ minutes to build get the failures.

@gustavovalverde
Copy link

Also hitting this problem when pushing to GCP Artifact Registry us-docker.pkg.dev it happens randomly on some pushes, sometimes it's more constant than others with the failures.

AttilioGreco added a commit to 4Sigma/web-baseimage that referenced this issue Jan 18, 2023
Danielius1922 added a commit to plgd-dev/hub that referenced this issue Jan 18, 2023
When building several images, some of them fail with
'io: read/write on closed pipe' error and cause the whole job
to fail.
The issues seems to be in build-push-action:
docker/build-push-action#761
BlaineEXE added a commit to BlaineEXE/whereabouts that referenced this issue May 24, 2023
This solves random build/push issues.
See: docker/build-push-action#761 (comment)

Signed-off-by: Blaine Gardner <blaine.gardner@redhat.com>
BlaineEXE added a commit to BlaineEXE/whereabouts that referenced this issue May 26, 2023
This solves random build/push issues.
See: docker/build-push-action#761 (comment)

Signed-off-by: Blaine Gardner <blaine.gardner@redhat.com>
BlaineEXE added a commit to BlaineEXE/whereabouts that referenced this issue May 26, 2023
This solves random build/push issues.
See: docker/build-push-action#761 (comment)

Signed-off-by: Blaine Gardner <blaine.gardner@redhat.com>
BlaineEXE added a commit to BlaineEXE/whereabouts that referenced this issue May 26, 2023
This solves random build/push issues.
See: docker/build-push-action#761 (comment)

Signed-off-by: Blaine Gardner <blaine.gardner@redhat.com>
@nitrocode
Copy link

Thanks for all the work on buildkit and this investigation!

We're still seeing this issue after we removed the pin. For a while we didnt see an issue and we don't see an error often but it pops up every now and then resulting in a failed push.

After pr merge runatlantis/atlantis@59bc9c5

Failed run https://github.com/runatlantis/atlantis/actions/runs/5139979174/jobs/9250992369

Unpinned buildx https://github.com/runatlantis/atlantis/blob/3468f58d1e1a46c77d6acc053aeda548e8626399/.github/workflows/atlantis-image.yml#L52 so i assume it uses v0.11.6 (current latest).

As a workaround, we may downgrade back to buildkit v0.11.2 to see if this rarity stops occurring. If that doesn't work then i suppose we may downgrade further back to v0.10.6 as mentioned above. It might be good to pin this dependency anyway for consistent builds and explicit dependency management.

@almereyda
Copy link

I can second the reappearance of the broken pipe errors with latest upstream. For us this happened when multiple workflow runs would try to push in the same time / very closely to each other.

@jedevc
Copy link
Contributor

jedevc commented Jun 6, 2023

Agh. Which release do you start to see the issue again in? I don't think there should be anything that major between our patch releases (though I could be very wrong).

I know there are some rare race conditions that I've fixed in containerd/containerd#8379 -- I'm slightly surprised that these can be hit in practice though.

These kind of issues can be insanely painful to debug, since it's not just buildx or containerd here, but randomness and racyness with the connection to the registry, which can sometimes be caused by a CI issue or a registry issue.

@ptr727
Copy link

ptr727 commented Jun 6, 2023

FYI, I don't know if it is GHCR's service or tooling, but I removed all GHCR posting, just too unreliable with the broken pipe errors that result in failed builds, no such problems with docker.io.

@shawaj
Copy link

shawaj commented Jun 9, 2023

I'm getting this again also:

Error: buildx failed with: ERROR: failed to solve: failed to push ghcr.io/nebraltd/hm-diag:amd64-latest: failed to copy: failed to do request: Put "https://ghcr.io/v2/nebraltd/hm-diag/blobs/upload/629372f9-861a-4cbc-a49d-48ed9fd1fdf8?digest=sha256%3Aa5c81eb870dbcd8c9411fe2b84143e000ebb127f92a1317766aed6d1c7cac745": write tcp 172.17.0.2:51626->140.82.112.34:443: write: connection reset by peer

From https://github.com/NebraLtd/hm-diag/actions/runs/5222474024/jobs/9428208081?pr=608

But only for ghcr. Not docker hub

@jedevc
Copy link
Contributor

jedevc commented Jun 12, 2023

I'm getting this again also:

Error: buildx failed with: ERROR: failed to solve: failed to push ghcr.io/nebraltd/hm-diag:amd64-latest: failed to copy: failed to do request: Put "https://ghcr.io/v2/nebraltd/hm-diag/blobs/upload/629372f9-861a-4cbc-a49d-48ed9fd1fdf8?digest=sha256%3Aa5c81eb870dbcd8c9411fe2b84143e000ebb127f92a1317766aed6d1c7cac745": write tcp 172.17.0.2:51626->140.82.112.34:443: write: connection reset by peer

From NebraLtd/hm-diag/actions/runs/5222474024/jobs/9428208081?pr=608

But only for ghcr. Not docker hub

@shawaj this is a different issue - you can see in the logs that we attempt a push 5 times, and then still fail anyways. There's really not a lot buildkit can do in this case, GHCR has just hung up on us at that point - if it's proving to be a huge issue, I'd recommend raising this directly with GitHub.

This issue is really only about the failed to copy: io: read/write on closed pipe issue, which is caused by a containerd patch which is now fixed in the latest version of BuildKit.

@credativ-dar
Copy link

credativ-dar commented Jun 12, 2023

For us this happened when multiple workflow runs would try to push in the same time / very closely to each other.

Same here, maybe this is a lead? (Additionally one of those is multi-arch.)

Shall we reopen this issue or create a new one?

Edit: It seems to have vanished again, I'll report back / open new issue in case it reappears.

@jedevc
Copy link
Contributor

jedevc commented Jun 12, 2023

@credativ-dar feel free to spin this out into a new issue. I'm not 100% sure this is related to the original cause.

@ptr727
Copy link

ptr727 commented Jun 12, 2023

For what it's worth I'm getting similar errors when using github container caching, so may be related to github infra when runnin matrix operations.

Error: buildx failed with: ERROR: failed to solve: error writing layer blob: error committing cache 4716: Post "https://artifactcache.actions.githubusercontent.com/tyS4n2kRUa5AumH1Zhadq4mFUgQLQ69CDNsXW5T9TSRu5WZIcW/_apis/artifactcache/caches/4716": read tcp 172.17.0.2:51494->13.107.42.16:443: read: connection reset by peer

@nitrocode
Copy link

In the runatlantis/atlantis project we're using matrix and ghcr too. Possibly related. We're planning to pin back to v0.10.6 to see if that resolves issues. We saw issues with v0.11.6 and v0.11.2 so far.

In both we see this error

failed to copy: io: read/write on closed pipe

@theodorton
Copy link

We're seeing the same issues as well. Trying to pin back.

@hwittenborn
Copy link

hwittenborn commented Jul 20, 2023

I experienced similar issues in a repository of mine using the following setup:

  • A matrix, with 30 builds running in parallel
  • Each matrix job builds for amd64 and arm64

Pinning v0.10.6 of buildx fixes the issue - inspecting build logs shows the error still occurs during pushes, but it looks like the pushing is retried until it succeeds instead of failing like with the latest buildx version.

Is this not an issue with buildx itself? I can understand if this is an issue with GitHub's tooling causing the error, but if buildx was previously able to gracefully handle the error and it now isn't, wouldn't that be some kind of regression in buildx?

@ReenigneArcher
Copy link

For the new people facing this issue, I was one of the original users getting it. I am not getting this error anymore, but what I did recently see is that my large, multiarch images, were failing to build altogether.

The cause was that the runner was out of disk space. GitHub must changed some stuff around in their image as I never faced that issue before. Anyway, maybe it's possible that the disk is out of space causing part of this action to fail again?

This was my solution. Add something like this as the first step to your job.

      - name: Maximize build space
        uses: easimon/maximize-build-space@v7
        with:
          root-reserve-mb: 30720  # https://github.com/easimon/maximize-build-space#caveats
          remove-dotnet: 'true'
          remove-android: 'true'
          remove-haskell: 'true'
          remove-codeql: 'true'
          remove-docker-images: 'true'

Root reserve starts with about 24 GB, but was not enough in my case, so I increased it to 30 GB.

@klippx
Copy link

klippx commented Jul 21, 2023

We are having this problem as well, every day a dozen PR each having half a dozen of failing jobs due due to the issue discussed here. Surprised that it's been 6 months and there is no other fix than this workaround has been found.

@crazy-max crazy-max added registry/github and removed kind/upstream Changes need to be made on upstream project labels Jul 21, 2023
@crazy-max
Copy link
Member

If some of you are willing to test with latest stable (not yet promoted):

      -
        name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
        with:
          driver-opts: |
            image=moby/buildkit:v0.12.0

I'm locking this issue as it's a bit heated and doesn't provide more context with BuildKit logs except one comment #761 (comment) which has been addressed with a fix in containerd: #761 (comment).

But feel free to open a new issue with BuildKit debug logs if it still occurs, thanks!

@docker docker locked as too heated and limited conversation to collaborators Jul 21, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests