From aa4c0846ca8ee6fd94ce6e732b839349e075042a Mon Sep 17 00:00:00 2001 From: MrUtkarsh <30735413+MrUtkarsh@users.noreply.github.com> Date: Mon, 10 Apr 2023 18:41:38 +0530 Subject: [PATCH] Update Dockerfile_Tips.md Updated the chown to chmod as its repeated. --- slides/containers/Dockerfile_Tips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/containers/Dockerfile_Tips.md b/slides/containers/Dockerfile_Tips.md index e1016dcb..31a49499 100644 --- a/slides/containers/Dockerfile_Tips.md +++ b/slides/containers/Dockerfile_Tips.md @@ -82,7 +82,7 @@ CMD ["python", "app.py"] * Layers cannot represent efficiently when a file is moved either. -* As a result, operations like `chown`, `chown`, `mv` can be expensive. +* As a result, operations like `chown`, `chmod`, `mv` can be expensive. * For instance, in the Dockerfile snippet below, each `RUN` line creates a layer with an entire copy of `some-file`.