From 75f0612f3ae41d16c3533712218b7986d087a748 Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Fri, 20 Oct 2023 14:10:09 +0700 Subject: [PATCH] Address review comments --- backend/LexBoxApi/dev.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/LexBoxApi/dev.Dockerfile b/backend/LexBoxApi/dev.Dockerfile index 3f0bb599f..38591a28f 100644 --- a/backend/LexBoxApi/dev.Dockerfile +++ b/backend/LexBoxApi/dev.Dockerfile @@ -9,7 +9,7 @@ WORKDIR /src/backend # Copy the main source project files COPY */*.csproj *.sln ./ # move them into the proper sub folders, based on the name of the project -RUN for file in $(ls *.csproj); do dir=${file%.*} mkdir -p ${file%.*}/ && mv $file ${file%.*}/ && echo dotnet restore ${file%.*}/${file} >> restore-csprojs.sh; done; bash restore-csprojs.sh; rm restore-csprojs.sh +RUN for file in $(ls *.csproj); do dir=${file%.*} mkdir -p ${file%.*}/ && mv $file ${file%.*}/; done; dotnet restore FixFwData/FixFwData.csproj; dotnet restore LexBoxApi/LexBoxApi.csproj COPY . . WORKDIR /src/backend/LexBoxApi