culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What is build context in Docker?

    Answers

    The environment where Docker runs
    The set of files available for the build processCorrect
    Base operating system configuration
    The way an image is constructed

    The build context in Docker is the set of files in a specific location (usually the current directory) that are sent to the Docker daemon during the build process. Only files within this context are available for operations such as COPY or ADD on the Dockerfile.