From 0993fe7aa1f30c48f84d300d1d8a3f5e9503b693 Mon Sep 17 00:00:00 2001 From: tom <92334622+tom-jm69@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:21:42 +0100 Subject: [PATCH 1/2] Update _index.md --- content/manuals/engine/storage/drivers/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/engine/storage/drivers/_index.md b/content/manuals/engine/storage/drivers/_index.md index 07ad123cfab2..f4fec63749c4 100644 --- a/content/manuals/engine/storage/drivers/_index.md +++ b/content/manuals/engine/storage/drivers/_index.md @@ -47,8 +47,8 @@ RUN rm -r $HOME/.cache CMD python /app/app.py ``` -This Dockerfile contains four commands. Commands that modify the filesystem create -a layer. The `FROM` statement starts out by creating a layer from the `ubuntu:22.04` +This Dockerfile contains four commands. Commands that modify the filesystem, create +a new layer. The `FROM` statement starts out by creating a layer from the `ubuntu:22.04` image. The `LABEL` command only modifies the image's metadata, and doesn't produce a new layer. The `COPY` command adds some files from your Docker client's current directory. The first `RUN` command builds your application using the `make` command, From 07b43d3d2f8472c8e2a962aecd3c71cd33c03a12 Mon Sep 17 00:00:00 2001 From: tom <92334622+tom-jm69@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:45:19 +0100 Subject: [PATCH 2/2] Update content/manuals/engine/storage/drivers/_index.md Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/manuals/engine/storage/drivers/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/engine/storage/drivers/_index.md b/content/manuals/engine/storage/drivers/_index.md index f4fec63749c4..57bf355e7b81 100644 --- a/content/manuals/engine/storage/drivers/_index.md +++ b/content/manuals/engine/storage/drivers/_index.md @@ -47,7 +47,7 @@ RUN rm -r $HOME/.cache CMD python /app/app.py ``` -This Dockerfile contains four commands. Commands that modify the filesystem, create +This Dockerfile contains four commands. Commands that modify the filesystem create a new layer. The `FROM` statement starts out by creating a layer from the `ubuntu:22.04` image. The `LABEL` command only modifies the image's metadata, and doesn't produce a new layer. The `COPY` command adds some files from your Docker client's current