hey I’m super new to monorepo and tooling like `pa...
# general
w
hey I’m super new to monorepo and tooling like
pants
so I was wondering what’s the “recommended” way of doing a build docker image process. Right now I have my CI set to
lint
and
test
using the
--changed-since
flag and it works great. Now I’m adding the
bundle
step and that will generate the
.tar.gz
files that will then be added to a docker image. I’m wondering how I can “know” what dockerfiles should be built based on the projects that were actually bundled during the
bundle
step, I can probably do a bash script that gets the output from
dist
folder but is that what I should be doing or pants have some cool feature to trigger commands/scripts that I’m missing?