go-build/pkg/build/builders/docker.go
Virgil 7705adcb74 feat(build): resolve relative Dockerfile paths
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 02:30:31 +00:00

228 lines
6.7 KiB
Go

// Package builders provides build implementations for different project types.
package builders
import (
"context"
"runtime"
"strings"
"dappco.re/go/core"
"dappco.re/go/core/build/internal/ax"
"dappco.re/go/core/build/pkg/build"
"dappco.re/go/core/io"
coreerr "dappco.re/go/core/log"
)
// DockerBuilder builds Docker images.
//
// b := builders.NewDockerBuilder()
type DockerBuilder struct{}
// NewDockerBuilder creates a new Docker builder.
//
// b := builders.NewDockerBuilder()
func NewDockerBuilder() *DockerBuilder {
return &DockerBuilder{}
}
// Name returns the builder's identifier.
//
// name := b.Name() // → "docker"
func (b *DockerBuilder) Name() string {
return "docker"
}
// Detect checks if a Dockerfile or Containerfile exists in the directory.
//
// ok, err := b.Detect(io.Local, ".")
func (b *DockerBuilder) Detect(fs io.Medium, dir string) (bool, error) {
if build.ResolveDockerfilePath(fs, dir) != "" {
return true, nil
}
return false, nil
}
// Build builds Docker images for the specified targets.
//
// artifacts, err := b.Build(ctx, cfg, []build.Target{{OS: "linux", Arch: "amd64"}})
func (b *DockerBuilder) Build(ctx context.Context, cfg *build.Config, targets []build.Target) ([]build.Artifact, error) {
dockerCommand, err := b.resolveDockerCli()
if err != nil {
return nil, err
}
// Ensure buildx is available
if err := b.ensureBuildx(ctx, dockerCommand); err != nil {
return nil, err
}
// Determine Docker manifest path
dockerfile := cfg.Dockerfile
if dockerfile == "" {
dockerfile = build.ResolveDockerfilePath(cfg.FS, cfg.ProjectDir)
} else if !ax.IsAbs(dockerfile) {
dockerfile = ax.Join(cfg.ProjectDir, dockerfile)
}
// Validate Dockerfile exists
if dockerfile == "" || !cfg.FS.IsFile(dockerfile) {
return nil, coreerr.E("DockerBuilder.Build", "Dockerfile or Containerfile not found", nil)
}
// Determine image name
imageName := cfg.Image
if imageName == "" {
imageName = cfg.Name
}
if imageName == "" {
imageName = ax.Base(cfg.ProjectDir)
}
// Build platform string from targets
buildTargets := targets
if len(buildTargets) == 0 {
buildTargets = []build.Target{{OS: runtime.GOOS, Arch: runtime.GOARCH}}
}
var platforms []string
for _, t := range buildTargets {
platforms = append(platforms, core.Sprintf("%s/%s", t.OS, t.Arch))
}
// Determine registry
registry := cfg.Registry
if registry == "" {
registry = "ghcr.io"
}
// Determine tags
tags := cfg.Tags
if len(tags) == 0 {
tags = []string{"latest"}
if cfg.Version != "" {
tags = append(tags, cfg.Version)
}
}
// Build full image references
var imageRefs []string
for _, tag := range tags {
// Expand version template
expandedTag := core.Replace(tag, "{{.Version}}", cfg.Version)
expandedTag = core.Replace(expandedTag, "{{Version}}", cfg.Version)
if registry != "" {
imageRefs = append(imageRefs, core.Sprintf("%s/%s:%s", registry, imageName, expandedTag))
} else {
imageRefs = append(imageRefs, core.Sprintf("%s:%s", imageName, expandedTag))
}
}
// Build the docker buildx command
args := []string{"buildx", "build"}
// Multi-platform support
args = append(args, "--platform", core.Join(",", platforms...))
// Add all tags
for _, ref := range imageRefs {
args = append(args, "-t", ref)
}
// Dockerfile path
args = append(args, "-f", dockerfile)
// Build arguments
for k, v := range cfg.BuildArgs {
expandedValue := core.Replace(v, "{{.Version}}", cfg.Version)
expandedValue = core.Replace(expandedValue, "{{Version}}", cfg.Version)
args = append(args, "--build-arg", core.Sprintf("%s=%s", k, expandedValue))
}
// Always add VERSION build arg if version is set
if cfg.Version != "" {
args = append(args, "--build-arg", core.Sprintf("VERSION=%s", cfg.Version))
}
safeImageName := strings.ReplaceAll(imageName, "/", "_")
// Output to local docker images or push.
// `--load` only works for a single target, so multi-platform local builds
// fall back to an OCI archive on disk.
useLoad := cfg.Load && !cfg.Push && len(buildTargets) == 1
if cfg.Push {
args = append(args, "--push")
} else if useLoad {
args = append(args, "--load")
} else {
// Local Docker builds emit an OCI archive so the build output is a file.
outputPath := ax.Join(cfg.OutputDir, core.Sprintf("%s.tar", safeImageName))
args = append(args, "--output", core.Sprintf("type=oci,dest=%s", outputPath))
}
// Build context (project directory)
args = append(args, cfg.ProjectDir)
// Create output directory
if err := cfg.FS.EnsureDir(cfg.OutputDir); err != nil {
return nil, coreerr.E("DockerBuilder.Build", "failed to create output directory", err)
}
core.Print(nil, "Building Docker image: %s", imageName)
core.Print(nil, " Platforms: %s", core.Join(", ", platforms...))
core.Print(nil, " Tags: %s", core.Join(", ", imageRefs...))
// Build once for the full platform set. Docker buildx produces a single
// multi-arch image or OCI archive from the combined platform list.
if err := ax.ExecWithEnv(ctx, cfg.ProjectDir, cfg.Env, dockerCommand, args...); err != nil {
return nil, coreerr.E("DockerBuilder.Build", "buildx build failed", err)
}
artifactPath := imageRefs[0]
if !cfg.Push && !useLoad {
artifactPath = ax.Join(cfg.OutputDir, core.Sprintf("%s.tar", safeImageName))
}
primaryTarget := buildTargets[0]
return []build.Artifact{{
Path: artifactPath,
OS: primaryTarget.OS,
Arch: primaryTarget.Arch,
}}, nil
}
// resolveDockerCli returns the executable path for the docker CLI.
func (b *DockerBuilder) resolveDockerCli(paths ...string) (string, error) {
if len(paths) == 0 {
paths = []string{
"/usr/local/bin/docker",
"/opt/homebrew/bin/docker",
"/Applications/Docker.app/Contents/Resources/bin/docker",
}
}
command, err := ax.ResolveCommand("docker", paths...)
if err != nil {
return "", coreerr.E("DockerBuilder.resolveDockerCli", "docker CLI not found. Install it from https://docs.docker.com/get-docker/", err)
}
return command, nil
}
// ensureBuildx ensures docker buildx is available and has a builder.
func (b *DockerBuilder) ensureBuildx(ctx context.Context, dockerCommand string) error {
// Check if buildx is available
if err := ax.Exec(ctx, dockerCommand, "buildx", "version"); err != nil {
return coreerr.E("DockerBuilder.ensureBuildx", "buildx is not available. Install it from https://docs.docker.com/buildx/working-with-buildx/", err)
}
// Check if we have a builder, create one if not
if err := ax.Exec(ctx, dockerCommand, "buildx", "inspect", "--bootstrap"); err != nil {
// Try to create a builder
if err := ax.Exec(ctx, dockerCommand, "buildx", "create", "--use", "--bootstrap"); err != nil {
return coreerr.E("DockerBuilder.ensureBuildx", "failed to create buildx builder", err)
}
}
return nil
}