Hello,
Regarding reprounzip docker, you can achieve smaller image sizes by copying over the untarred DATA directory instead of copying and then extracting data.tgz. The delta image size is the size of data.tgz. Is there a reason to have data.tgz inside the image?
Also, all of the COPY instructions can be merged into one, because they copy into the same directory (/). The Dockerfile could look like this:
FROM debian:stretch
COPY busybox DATA rpz-files.list rpzsudo /
RUN chmod +x /busybox /rpzsudo
If this looks OK, I would be more than happy to submit a PR.
Thanks,
Jakub
Hello,
Regarding
reprounzip docker, you can achieve smaller image sizes by copying over the untarredDATAdirectory instead of copying and then extractingdata.tgz. The delta image size is the size ofdata.tgz. Is there a reason to havedata.tgzinside the image?Also, all of the
COPYinstructions can be merged into one, because they copy into the same directory (/). The Dockerfile could look like this:If this looks OK, I would be more than happy to submit a PR.
Thanks,
Jakub