Reducing Docker Images Size Using Xz
what & why During a project, I needed to build a container that could render graphs based on pretty big arrays, using plotly, kaleido and pandas. The arrays would be DataFrames from pandas, turned into graphs through plotly, and then renderer as jpeg images using kaleido. This is not uncommon to have pretty big dependencies in a python project, but when pulling these pacakges locally, it took quite a long time, so I checked the size of each : ...