From 99b6b29b6fcfcb15fe7e9c0de2574e9b5e8f338d Mon Sep 17 00:00:00 2001 From: Nick Seguin Date: Sun, 25 Feb 2024 15:34:31 -0600 Subject: [PATCH] fix dockerfile --- Dockerfile | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) 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