Skip to content

Commit f7b19eb

Browse files
author
damienleroy
committed
activate dotnet 8 - dockerfile
1 parent e77c4c3 commit f7b19eb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS restore
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS restore
22
WORKDIR /app
33
COPY KafkaTester.csproj .
44
RUN dotnet restore
@@ -10,7 +10,7 @@ RUN dotnet build --no-restore --configuration Release
1010
FROM build AS publish
1111
RUN dotnet publish --no-restore --no-build --configuration Release --output artifacts
1212

13-
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS runtime
13+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
1414
WORKDIR /app
1515
COPY --from=publish /app/artifacts /app
1616
EXPOSE 5000

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ You can:
1515
- save multiple configuration
1616
- import/export configuration
1717
- list & select topics of the brokers
18+
- connect to the brokers with the Security Protocol (SASL, SSL)
19+
- Activate GZip decompression for the messages
1820

1921
More are about to come. Don't hesitate to propose.
2022
Plan for the future:

0 commit comments

Comments
 (0)