From 6338d9674ced9507c2f457a1741f0ffdfff9145e Mon Sep 17 00:00:00 2001 From: Emad Alashi Date: Sat, 11 Jul 2020 22:06:13 +1000 Subject: [PATCH] Change ignored directory to forward slash When using the backward slash I think it will only use on Windows? In my case I was on MacOS and the folders weren't ignored until I changed the slashes to be forward slash. --- engine/examples/dotnetcore.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/examples/dotnetcore.md b/engine/examples/dotnetcore.md index 7faac9284f..f390ca2279 100644 --- a/engine/examples/dotnetcore.md +++ b/engine/examples/dotnetcore.md @@ -65,8 +65,8 @@ ENTRYPOINT ["dotnet", "aspnetapp.dll"] to your project folder and copy the following into it. ```dockerignore -bin\ -obj\ +bin/ +obj/ ``` ## Build and run the Docker image