Change to use new build output path

This commit is contained in:
2023-08-11 19:58:32 +01:00
parent 9c07c3120b
commit 3824c72191
5 changed files with 10 additions and 4 deletions

View File

@ -5,6 +5,8 @@ COPY ./.config ./
RUN dotnet tool restore
COPY ./Groceries.sln ./
COPY ./Directory.Build.props ./
COPY */*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
RUN dotnet restore