A Dockerfile is a text document used to create own docker container. A Dockerfile has some commands FROM: Sets the Base Image for subsequent instructions. MAINTAINER: (deprecated - use LABEL instead) Set the Author field of the generated images. RUN: execute any commands in a new layer on top of the current image and …
Read More