Skip to content

Commit c2a03f8

Browse files
Apply suggestion from @crazy-max
Co-authored-by: CrazyMax <[email protected]>
1 parent b6ec4c1 commit c2a03f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/manuals/build/concepts/dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Here are the most common types of instructions:
2323
| [`RUN <command>`](/reference/dockerfile.md#run) | Executes commands in a new layer on top of the current image and commits the result. `RUN` also has a shell form for running commands. |
2424
| [`WORKDIR <directory>`](/reference/dockerfile.md#workdir) | Sets the working directory for any `RUN`, `CMD`, `ENTRYPOINT`, `COPY`, and `ADD` instructions that follow it in the Dockerfile. |
2525
| [`COPY <src> <dest>`](/reference/dockerfile.md#copy) | Copies new files or directories from `<src>` and adds them to the container at the path `<dest>`. |
26-
| [`CMD <command>`](/reference/dockerfile.md#cmd) | Defines the default program that runs when you start the container. Only the last `CMD` in the Dockerfile is used if multiple exist. |
26+
| [`CMD <command>`](/reference/dockerfile.md#cmd) | Defines the default program that runs when you start the container based on this image. Only the last `CMD` in the Dockerfile is used if multiple exist. |
2727

2828
Dockerfiles are crucial inputs for image builds and can facilitate automated,
2929
multi-layer image builds based on your unique configurations. Dockerfiles can

0 commit comments

Comments
 (0)