that's not ideal for my project because: 1. I want to build the containers myself - (I need to pass ARGs and then minify them) 2. I want to keep my
docker/
docker/
stuff separate of my
web/
web/
stuff
I made this project a few days after Containers came out. Are there any new built-in mechanisms to help me handle this?
Additionally, I need to periodically update my images in the container repo. So far I've been using a Github Action that builds and pushes the new versions using the wrangler CLI , however this seems like it.. breaks(?) my images? Eventually, after a few updates, when a container boots up it says it can't find the image.
To fix this, I've just had to manually build + minify + push them on my machine.