1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-08 07:44:57 +00:00
terraform-playground/pymage/main.go
Cursor Agent 1f2fd93117
Rename py-image-builder to pymage (module, imports, CLI, workflow, docs)
Co-authored-by: Jason Hall <imjasonh@users.noreply.github.com>
2026-06-10 13:30:05 +00:00

21 lines
583 B
Go

// Command pymage builds and pushes OCI images for Python applications
// without a Docker daemon, in the spirit of ko.
//
// It installs each resolved wheel into its own deterministic, content-addressed
// layer (so adding a dependency creates exactly one new layer and unchanged
// dependencies are never re-uploaded) and lays the application source on top.
package main
import (
"fmt"
"os"
"github.com/imjasonh/terraform-playground/pymage/internal/cli"
)
func main() {
if err := cli.Root().Execute(); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
}