A downstream Ubuntu image for running Go coding agents in a container.
It gives agents a clean sandbox with Go, Git, search tools, and build/debug basics.
Pull the published image:
docker pull barkinbalci/gobuntu:latestBuild the image yourself:
docker build --platform linux/amd64 --build-arg GO_VERSION=1.26 -t barkinbalci/gobuntu:latest .Run it with the current directory mounted at /workspace:
docker run --rm -it -v "$PWD:/workspace" -w /workspace barkinbalci/gobuntu:latest