To implement multistage Docker build to reduce image size.
In this experiment, a multistage Dockerfile was used to compile the C program in one stage and run it in another stage. This reduced the final image size and improved performance.
Shows Dockerfile with multiple build stages.

Displays output of multistage build.

Shows reduced image size after optimization.

Shows final execution of C application.

Multistage Docker build optimized the deployment process.
This experiment helped in understanding efficient container image creation techniques.