From a10a738aa2da49c31e813b9a09ea9a91eb58e4d2 Mon Sep 17 00:00:00 2001 From: Pavi Date: Mon, 1 Mar 2021 09:15:25 +0000 Subject: [PATCH] updated docker file director --- Dockerfile/dockerfile_basics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile/dockerfile_basics.md b/Dockerfile/dockerfile_basics.md index 3ff97c3..4aac488 100644 --- a/Dockerfile/dockerfile_basics.md +++ b/Dockerfile/dockerfile_basics.md @@ -1,11 +1,11 @@ # Dockerfile basics FROM -RUN - (Use RUN command only once, becuase each run command create a new lower) +RUN -- (Use RUN command only once, becuase each run command create a new lower) COPY -ADD - (To download content inside the container) - Recheck this +ADD -- (To download content inside the container) - Recheck this EXPOSE -CMD - There can only be one CMD instruction in a Dockerfile. If you list more than one CMD then only the last CMD will take effect. +CMD -- There can only be one CMD instruction in a Dockerfile. If you list more than one CMD then only the last CMD will take effect. ENTRYPONT Create a 1st Docker file to setup tomcat.