File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:7 .0 AS restore
1
+ FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS restore
2
2
WORKDIR /app
3
3
COPY KafkaTester.csproj .
4
4
RUN dotnet restore
@@ -10,7 +10,7 @@ RUN dotnet build --no-restore --configuration Release
10
10
FROM build AS publish
11
11
RUN dotnet publish --no-restore --no-build --configuration Release --output artifacts
12
12
13
- FROM mcr.microsoft.com/dotnet/aspnet:7 .0 AS runtime
13
+ FROM mcr.microsoft.com/dotnet/aspnet:8 .0 AS runtime
14
14
WORKDIR /app
15
15
COPY --from=publish /app/artifacts /app
16
16
EXPOSE 5000
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ You can:
15
15
- save multiple configuration
16
16
- import/export configuration
17
17
- list & select topics of the brokers
18
+ - connect to the brokers with the Security Protocol (SASL, SSL)
19
+ - Activate GZip decompression for the messages
18
20
19
21
More are about to come. Don't hesitate to propose.
20
22
Plan for the future:
You can’t perform that action at this time.
0 commit comments