From f90bcbe5eca85f3543ae92f5e89a3143fbcefcb3 Mon Sep 17 00:00:00 2001 From: aryansri05 Date: Sat, 18 Oct 2025 23:12:27 +0530 Subject: [PATCH] Fix typos and syntax errors in USING-WORKDIR.md --- Creating-dockerFile/USING-WORKDIR.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Creating-dockerFile/USING-WORKDIR.md b/Creating-dockerFile/USING-WORKDIR.md index 645f405..b447ce1 100644 --- a/Creating-dockerFile/USING-WORKDIR.md +++ b/Creating-dockerFile/USING-WORKDIR.md @@ -13,7 +13,7 @@ And then adde the following to this file: ```bash FROM UBUNTU -// Few files in one dir, few in another +# Few files in one dir, few in another RUN touch /root/testfile.txt RUN touch /root/testfile2.txt @@ -21,8 +21,8 @@ RUN touch /root/testfile3.txt // To create more folders -RUN mkdir-p root/testFolder/child-1 -RUN mkdir-p root/testFolder/child-2 +RUN mkdir -p root/testFolder/child-1 +RUN mkdir -p root/testFolder/child-2 /* Tiresome work */ ``` @@ -35,7 +35,7 @@ FROM ubuntu WORKDIR /root/ RUN touch ./textfile1.txt -RUN touch ./textfile2.txt +RUN mkdir ./newFolder/childFolder-1 RUN mkdir ./newFolder/childFolder-1 WORKDIR ./root/newFolder/child-Folder-1