Let’s talk about Dockerfile
Docker provides a way to build an image by reading a set of instructions. Dockerfile is the file containing such instructions which is read by docker build command to generate an image. $docker build <context> The command, docker build, is passed with either of two context, PATH or URL. Path is the location in local […]