fix dockerfile
Some checks failed
dotnet build / build (push) Failing after 9s

This commit is contained in:
Nick Seguin 2024-02-25 15:34:31 -06:00
parent 401bb59218
commit 99b6b29b6f
Signed by: nseguin
GPG key ID: 68C99FA84079021D

View file

@ -19,24 +19,25 @@ RUN npm install -g npm && npm install -g pnpm && npm cache clean --force
# install wasm-tools workload # install wasm-tools workload
RUN dotnet workload install wasm-tools RUN dotnet workload install wasm-tools
# Copy csproj and restore as distinct layers
COPY *.sln . COPY *.sln .
COPY src/NSeguin.Dev.Web/*.csproj ./src/NSeguin.Dev.Web/ COPY global.json ./
COPY src/NSeguin.Dev.Web/libman.json ./src/NSeguin.Dev.Web/ COPY nuget.config ./
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 targets/*.targets ./targets/ COPY targets/*.targets ./targets/
COPY targets/*.props ./targets/ COPY targets/*.props ./targets/
COPY Directory.Build.props . COPY Directory.Build.props .
COPY Directory.Build.targets . COPY Directory.Build.targets .
COPY Directory.Packages.props . COPY Directory.Packages.props .
COPY nuget.config ./
COPY pnpm-lock.yaml ./ COPY src/NSeguin.Dev.Web/*.csproj ./src/NSeguin.Dev.Web/
COPY index.ts ./ COPY src/NSeguin.Dev.Web/libman.json ./src/NSeguin.Dev.Web/
COPY tailwind.config.ts ./ COPY src/NSeguin.Dev.Web/package.json ./src/NSeguin.Dev.Web/
COPY package.json ./ COPY src/NSeguin.Dev.Web/pnpm-lock.yaml ./src/NSeguin.Dev.Web/
COPY global.json ./ 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 tool restore
RUN dotnet restore --configfile nuget.config --locked-mode --force-evaluate RUN dotnet restore --configfile nuget.config --locked-mode --force-evaluate