From 6bbd85cc37888e39e83f43f80a04946dba374bc3 Mon Sep 17 00:00:00 2001 From: Letian Feng Date: Fri, 20 Oct 2017 11:09:52 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20=E5=8D=95=E8=AF=8D=E9=94=99=E8=AF=AF=20Do?= =?UTF-8?q?ckrfile=20->=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- image/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/build.md b/image/build.md index 3e8bdf7..57e2ea4 100644 --- a/image/build.md +++ b/image/build.md @@ -48,7 +48,7 @@ FROM scratch `RUN` 指令是用来执行命令行命令的。由于命令行的强大能力,`RUN` 指令在定制镜像时是最常用的指令之一。其格式有两种: -* *shell* 格式:`RUN <命令>`,就像直接在命令行中输入的命令一样。刚才写的 Dockrfile 中的 `RUN` 指令就是这种格式。 +* *shell* 格式:`RUN <命令>`,就像直接在命令行中输入的命令一样。刚才写的 Dockerfile 中的 `RUN` 指令就是这种格式。 ```Dockerfile RUN echo '

Hello, Docker!

' > /usr/share/nginx/html/index.html