From 95eb388c36736e240c12bf6043137f5cdd8583e1 Mon Sep 17 00:00:00 2001 From: James Chapman Date: Fri, 11 Aug 2023 22:43:56 +0100 Subject: [PATCH] Fix libman failing to restore JavaScript libs in Docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44e2193..6bbee6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ COPY */*.csproj ./ RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done RUN dotnet restore -COPY ./Groceries/libman.json ./ WORKDIR Groceries +COPY ./Groceries/libman.json ./ RUN dotnet libman restore COPY . ../