Program aebundler turns a Go app into a fully self-contained tar file.
The app and its subdirectories (if any) are placed under "."
and the dependencies from $GOPATH are placed under ./_gopath/src.
A main func is synthesized if one does not exist.
A sample Dockerfile to be used with this bundler could look like this:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The aebundler program creates a self-contained tar file of a Go application, including all necessary files and dependencies."],["Dependencies from the `$GOPATH` are included in the tar file under the `/_gopath/src` directory."],["If the Go application is missing a main function, the aebundler tool will create one."],["The package can be found at different versions, latest being 1.6.8, on pkg.go.dev."],["A provided Dockerfile sample shows how to create and run the application built with aebundler."]]],[]]