➜ ls
go.mod go.sum main.go
➜ test docker container stop dagger-buildkitd && docker container rm dagger-buildkitd && docker volume rm dagger-buildkitd
dagger-buildkitd
dagger-buildkitd
dagger-buildkitd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module buildkit-repro | |
go 1.17 | |
require ( | |
github.com/moby/buildkit v0.10.0-rc1.0.20220224103313-c393d5c66d11 // Use latest version on repository | |
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | |
) | |
require ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is an auto-generated file. DO NOT EDIT | |
apiVersion: apiextensions.k8s.io/v1 | |
kind: CustomResourceDefinition | |
metadata: | |
labels: | |
app.kubernetes.io/name: applications.argoproj.io | |
app.kubernetes.io/part-of: argocd | |
name: applications.argoproj.io | |
spec: | |
group: argoproj.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
bk "github.com/moby/buildkit/client" | |
_ "github.com/moby/buildkit/client/connhelper/dockercontainer" | |
"github.com/moby/buildkit/client/llb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: Release name (tags will prefix it) | |
required: true | |
tags: | |
description: Version Tags |