I’m working on a monorepo consisting of code for s...
# general
f
I’m working on a monorepo consisting of code for several flywheel.io “gears”. A gear is basically a Docker image with a particular directory structure and a manifest.json. I’ve got the project configured so that pants will build the docker image. But flywheel has its own internal container registry and the push is handled by a command-line script that must be run in the directory with the manifest. I want to make it so that publishing the gear image uses the flywheel script instead of docker push. Any suggestions on a quick and dirty strategy to make this happen?
b
Potentially
experimental_run_shell_command
would let you
./pants run path/to:target
to publish.