dockerfile commands cheat sheet

DockerFile Commands Explained-cheat sheet-Tutorial

DockerFile Commands Explained-cheat sheet-Tutorial FROM every dockerfile starts with from command. in the from command, we will mention base image for the docker image. Example: From node:latest MAINTAINER MAINTAINER decodingdevops@gmail.com maintainer command is used to represent the author...