Hey @jpmckinney, could you share the intended docker build command for ids-drr-india-branding? I hit a few issues trying to figure it out and want to align with what you had in mind.
Here's what we ran into:
1. ../ids-drr-india-branding is outside the build context
Running from IDS-DRR-Frontend/, Docker can't reach ../ — so --build-arg BRANDING_PACKAGE=../ids-drr-india-branding fails immediately.
2. Moving up to the parent directory but there is no .dockerignore
Running from parent with -f IDS-DRR-Frontend/Dockerfile works structurally, but without a .dockerignore at that level, Docker sends everything (repos' node_modules, .next, etc.) as build context.
What's the clean intended way to pass the branding repo into the build?
Hey @jpmckinney, could you share the intended
docker buildcommand forids-drr-india-branding? I hit a few issues trying to figure it out and want to align with what you had in mind.Here's what we ran into:
1.
../ids-drr-india-brandingis outside the build contextRunning from
IDS-DRR-Frontend/, Docker can't reach../— so--build-arg BRANDING_PACKAGE=../ids-drr-india-brandingfails immediately.2. Moving up to the parent directory but there is no .dockerignore
Running from parent with
-f IDS-DRR-Frontend/Dockerfileworks structurally, but without a.dockerignoreat that level, Docker sends everything (repos'node_modules,.next, etc.) as build context.What's the clean intended way to pass the branding repo into the build?