mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	Merge pull request #2600 from blampe/blampe/build-config
build: don't force default configuration
This commit is contained in:
		@@ -3,7 +3,6 @@ package build
 | 
			
		||||
import (
 | 
			
		||||
	"context"
 | 
			
		||||
	"io"
 | 
			
		||||
	"os"
 | 
			
		||||
	"path/filepath"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"sync"
 | 
			
		||||
@@ -19,7 +18,6 @@ import (
 | 
			
		||||
	"github.com/docker/buildx/util/platformutil"
 | 
			
		||||
	"github.com/docker/buildx/util/progress"
 | 
			
		||||
	"github.com/docker/cli/cli/command"
 | 
			
		||||
	"github.com/docker/cli/cli/config"
 | 
			
		||||
	dockeropts "github.com/docker/cli/opts"
 | 
			
		||||
	"github.com/docker/docker/api/types/container"
 | 
			
		||||
	"github.com/moby/buildkit/client"
 | 
			
		||||
@@ -76,7 +74,7 @@ func RunBuild(ctx context.Context, dockerCli command.Cli, in controllerapi.Build
 | 
			
		||||
	}
 | 
			
		||||
	opts.Platforms = platforms
 | 
			
		||||
 | 
			
		||||
	dockerConfig := config.LoadDefaultConfigFile(os.Stderr)
 | 
			
		||||
	dockerConfig := dockerCli.ConfigFile()
 | 
			
		||||
	opts.Session = append(opts.Session, authprovider.NewDockerAuthProvider(dockerConfig, nil))
 | 
			
		||||
 | 
			
		||||
	secrets, err := controllerapi.CreateSecrets(in.Secrets)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user