How to reduce python Docker image size
My Python based Docker image is 6.35GB. I tried multi stage build and several other options found while searching( like cache cleanup) Nothing helped. I might be missing something really important. # Use a smaller base image FROM python:3.11.4-slim as…