-
Notifications
You must be signed in to change notification settings - Fork 0
Description
When working with an API, a fat container is usually not needed for debugging (log inspection will usually suffice). However for the front end, things like webpack -w
and/or webpack dev server
that are much more useful for development. Thus, the container would need to be fat, with all the tooling inside. We have a fat container for building, but that container is ephemeral. What we would need to do is perhaps add in another setting DEVELOPMENT_CONTAINER=
and/or DEVELOPMENT_DOCKER_FILE
. A sight issue however, in that it doesn't look like docker
nor docker-compose
support multiple .dockerignore
s, so we would have to dump the output of zest build
into another folder, and have zest bundle
pick up only stuff in that folder.... which is not ideal I suppose.