culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What command is used to create an image from a Dockerfile?

    Answers

    docker create
    docker make
    docker buildCorrect
    docker compile

    The docker build command is used to create an image from a Dockerfile. It reads the instructions from the Dockerfile and executes each one sequentially, creating a new layer in the image for each instruction.