diff --git a/Dockerfile b/Dockerfile index 9439976..be64bd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,24 +19,25 @@ RUN npm install -g npm && npm install -g pnpm && npm cache clean --force # install wasm-tools workload RUN dotnet workload install wasm-tools -# Copy csproj and restore as distinct layers COPY *.sln . -COPY src/NSeguin.Dev.Web/*.csproj ./src/NSeguin.Dev.Web/ -COPY src/NSeguin.Dev.Web/libman.json ./src/NSeguin.Dev.Web/ -COPY src/NSeguin.Dev.Web.Client/*.csproj ./src/NSeguin.Dev.Web.Client/ -COPY src/NSeguin.Dev.Web.Common/*.csproj ./src/NSeguin.Dev.Web.Common/ -COPY src/NSeguin.Dev.Web.HeroIconSourceGenerator/*.csproj ./src/NSeguin.Dev.Web.HeroIconSourceGenerator/ +COPY global.json ./ +COPY nuget.config ./ + COPY targets/*.targets ./targets/ COPY targets/*.props ./targets/ COPY Directory.Build.props . COPY Directory.Build.targets . COPY Directory.Packages.props . -COPY nuget.config ./ -COPY pnpm-lock.yaml ./ -COPY index.ts ./ -COPY tailwind.config.ts ./ -COPY package.json ./ -COPY global.json ./ + +COPY src/NSeguin.Dev.Web/*.csproj ./src/NSeguin.Dev.Web/ +COPY src/NSeguin.Dev.Web/libman.json ./src/NSeguin.Dev.Web/ +COPY src/NSeguin.Dev.Web/package.json ./src/NSeguin.Dev.Web/ +COPY src/NSeguin.Dev.Web/pnpm-lock.yaml ./src/NSeguin.Dev.Web/ +COPY src/NSeguin.Dev.Web/tailwind.config.ts ./src/NSeguin.Dev.Web/ + +COPY src/NSeguin.Dev.Web.Client/*.csproj ./src/NSeguin.Dev.Web.Client/ +COPY src/NSeguin.Dev.Web.Common/*.csproj ./src/NSeguin.Dev.Web.Common/ +COPY src/NSeguin.Dev.Web.HeroIconSourceGenerator/*.csproj ./src/NSeguin.Dev.Web.HeroIconSourceGenerator/ RUN dotnet tool restore RUN dotnet restore --configfile nuget.config --locked-mode --force-evaluate