This commit is contained in:
parent
401bb59218
commit
99b6b29b6f
1 changed files with 13 additions and 12 deletions
25
Dockerfile
25
Dockerfile
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue