Multi stage builds made my Python Docker image larger. Why?
When using normal one stage build Dockerfile, the final image is 216MB; but when using a multi-stage build approach shown below, I got a final image of 227MB. Why is this?
When using normal one stage build Dockerfile, the final image is 216MB; but when using a multi-stage build approach shown below, I got a final image of 227MB. Why is this?