I have a project with two Dockerfiles in the same directory:
project
/Dockerfile.web
/Dockerfile.worker
I can use them to build different parts of the same project very easily with docker-compose
. However, I struggle to tell heroku container:push
that I want to use a custom Dockerfile. It seems I can only refer to custom directories to build.
Is there a solution to that?