shell-cell 1.6.3

Shell-Cell. CLI app to spawn and manage containerized shell environments
main: {
	from_image: "python:3.14-trixie"
	workspace:  "/app"
	shell:      "/bin/bash"
	hang:       "python3 -m http.server 4321"
	copy: [
		"copy_test.txt copy_test.txt",
		"copy-source cp",
	]
	env: [
		"ENV_TEST='env works!'",
	]
	build: [
		"echo 'build works!' > build_test.txt",
	]
	config: {
		mounts: [
			"./mount-source:/app/mnt",
		]
		ports: [
			"4321:4321",
		]
	}
}