What are Docker Images?
A Docker image is a lightweight, standalone, executable package that includes everything needed to run software:
- Application code
- Runtime environment
- System libraries
- Dependencies
- Configuration files
Images are Read-Only
Docker images are immutable and read-only. Once built, they cannot be changed. To modify an image, you create a new one.