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
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