Summary
The build process of Docker images can be done using the docker build command, which takes a Dockerfile and a “context” as input.
1
The context is the set of files located in the specified PATH or URL, and the build process can refer to any of the files in the context.
1
For example, a COPY instruction can be used to reference a file in the context.
1
According to