Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Servers/GenHttpServer11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY Directory.Build.props .
COPY src/Servers/GenHttpServer/ src/Servers/GenHttpServer/
RUN dotnet restore src/Servers/GenHttpServer/GenHttpServer.csproj
RUN dotnet publish src/Servers/GenHttpServer/GenHttpServer.csproj -c Release -o /app --no-restore
COPY src/Servers/GenHttpServer11/ src/Servers/GenHttpServer11/
RUN dotnet restore src/Servers/GenHttpServer11/GenHttpServer.csproj
RUN dotnet publish src/Servers/GenHttpServer11/GenHttpServer.csproj -c Release -o /app --no-restore

FROM mcr.microsoft.com/dotnet/runtime:10.0
WORKDIR /app
Expand Down
6 changes: 3 additions & 3 deletions src/Servers/GenHttpServer11/GenHttpServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GenHTTP.Core" Version="11.0.0-preview.8" />
<PackageReference Include="GenHTTP.Modules.Functional" Version="11.0.0-preview.8" />
<PackageReference Include="GenHTTP.Modules.Practices" Version="11.0.0-preview.8" />
<PackageReference Include="GenHTTP.Core" Version="11.0.0-preview.9" />
<PackageReference Include="GenHTTP.Modules.Functional" Version="11.0.0-preview.9" />
<PackageReference Include="GenHTTP.Modules.Practices" Version="11.0.0-preview.9" />
</ItemGroup>

</Project>
Loading