linux-egradjani
linux-egradjani copied to clipboard
Dockerize
Fixes #3
TODO
- [ ] Add CI that build docker image and pushes to a registry
- [ ] Add repo versioning with git tag
- [ ] Update Readme
Each RUN creates another layer and there is no need to do that. I would recommend using boolean &&
to merge multiple commands into a single chain that should fail (and short-circuit rest of the execution) in case of an error.
Each RUN creates another layer and there is no need to do that. I would recommend using boolean
&&
to merge multiple commands into a single chain that should fail (and short-circuit rest of the execution) in case of an error.
yes agree, didn't have time to make it work first and then optimize it (split builder from runtime image using multi-staged images and reduce amount of layers). If you wanna take over that task and contribute, feel free :)