-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Development Container for Zest #22
Comments
When I mean "front end" container, it comes with some kind of "front-end backend" built in (lighttpd, node, go, scala, etc). I suppose for static files, they can just be served from a CDN. |
I guess I was going to have to tackle FE file server containers eventually. |
Working with @callmenick to see how this is best done. May not need any additional changes. |
Its looking like docker makes any issues with tooling worse (webpack/sass-node), so this is on hold for now. |
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/orwebpack 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 settingDEVELOPMENT_CONTAINER=
and/orDEVELOPMENT_DOCKER_FILE
. A sight issue however, in that it doesn't look likedocker
nordocker-compose
support multiple.dockerignore
s, so we would have to dump the output ofzest build
into another folder, and havezest bundle
pick up only stuff in that folder.... which is not ideal I suppose.The text was updated successfully, but these errors were encountered: