Simplify copying csproj files in Docker build
All checks were successful
Docker Image CI / build (push) Successful in 1m41s

This commit is contained in:
James Chapman 2024-07-11 21:46:55 +01:00
parent 4c62cded56
commit 8066478447
Signed by: jamsch0
GPG Key ID: 765FE58130277547

View File

@ -1,3 +1,5 @@
# syntax=docker/dockerfile:1.7-labs
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build1
WORKDIR /src
@ -14,8 +16,7 @@ WORKDIR /src
COPY ./Groceries.sln ./
COPY ./Directory.Build.props ./
COPY */*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
COPY --parents */*.csproj .
RUN dotnet restore
COPY . ./