perf: Optimize Dockerfile for reduced layers and size #5038
+12
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Title: Optimize Dockerfile for Efficiency and Size
What this PR does / why we need it:
Optimizes the Dockerfile to reduce the number of layers, improve efficiency, and decrease the overall image size.
Special notes for reviewer:
The main changes involve grouping related commands and cleaning up after installations to reduce image size.
Details:
Combined related commands to reduce Docker layers.
Grouped the installation of tools and libraries into a single RUN command.
Cleaned up the apt cache and removed unnecessary files post-installation.
Combined environment variable declarations for clarity.
How to test this PR:
Build the Docker image using the updated Dockerfile.
Run the container and ensure all functionalities are working as expected.
Screenshots:
N/A
Additional context:
This optimization aims to make the Dockerfile more efficient and the resulting image smaller in size.