culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What is a base image in Docker?

    Answers

    The first image created on a system
    An image that serves as a starting point to build other imagesCorrect
    An image stored in the system's base location
    The image with the most basic version of Docker

    A base image is one that is used as a starting point to build other images, specified with the FROM statement in a Dockerfile. It can be a minimal operating system like Alpine Linux, a full distribution like Ubuntu, or an image that already includes a runtime like Node.js or Python.