From 3c6aa3b69b63ae3928a92850a723d2ea1b3f8c4d Mon Sep 17 00:00:00 2001 From: juroberttyb Date: Tue, 26 Dec 2023 20:28:13 +0800 Subject: [PATCH] fix: missing path in docker build (#67) Co-authored-by: robert --- docs/src/content/docs/guides/hosting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/guides/hosting.md b/docs/src/content/docs/guides/hosting.md index f786e81..099cc2b 100644 --- a/docs/src/content/docs/guides/hosting.md +++ b/docs/src/content/docs/guides/hosting.md @@ -53,7 +53,7 @@ CMD ["/cdn/go-fast-cdn-linux"] Now, when you have saved the file, you can test if it works as expected by building the container. For this step make sure that you have Docker running on your machine. ```bash -docker build -t cdn +docker build . -t cdn ``` If it builds successfully, you can run it with the following command