From a6da208ff24591d7ac59974d9af585b0ab061ce3 Mon Sep 17 00:00:00 2001 From: Stachu Korick Date: Thu, 28 Apr 2022 20:21:38 -0400 Subject: [PATCH 1/2] Adjust Console Dockerfile to copy install-dotnets correctly on new versions of Docker https://stackoverflow.com/questions/53650492/when-using-copy-with-more-than-one-source-file-the-destination-must-be-a-direct --- Content/Console/.devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content/Console/.devcontainer/Dockerfile b/Content/Console/.devcontainer/Dockerfile index 7d75080a..2392de83 100644 --- a/Content/Console/.devcontainer/Dockerfile +++ b/Content/Console/.devcontainer/Dockerfile @@ -26,7 +26,7 @@ ENV \ DOTNET_INSTALL_DIR=/usr/share/dotnet/ \ DOTNET_ROOT=/usr/share/dotnet/ -COPY ./.devcontainer/install-dotnets.sh global.json* . +COPY ./.devcontainer/install-dotnets.sh global.json* ./ RUN /bin/bash install-dotnets.sh From 09e8de38dfd1de145cc541f98ada1fd751e06e07 Mon Sep 17 00:00:00 2001 From: Stachu Korick Date: Thu, 28 Apr 2022 20:25:11 -0400 Subject: [PATCH 2/2] Adjust Library Dockerfile to copy install-dotnets correctly on new versions of Docker --- Content/Library/.devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content/Library/.devcontainer/Dockerfile b/Content/Library/.devcontainer/Dockerfile index 7d75080a..2392de83 100644 --- a/Content/Library/.devcontainer/Dockerfile +++ b/Content/Library/.devcontainer/Dockerfile @@ -26,7 +26,7 @@ ENV \ DOTNET_INSTALL_DIR=/usr/share/dotnet/ \ DOTNET_ROOT=/usr/share/dotnet/ -COPY ./.devcontainer/install-dotnets.sh global.json* . +COPY ./.devcontainer/install-dotnets.sh global.json* ./ RUN /bin/bash install-dotnets.sh