We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe76e39 + 692ee96 commit 52ebf73Copy full SHA for 52ebf73
1 file changed
Dockerfile
@@ -33,7 +33,8 @@ FROM build AS publish
33
RUN dotnet publish "./ConversionTool/ConversionTool.csproj" -c Release -o /app/publish
34
35
FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim AS final
36
-RUN apt-get update && apt-get install wkhtmltopdf -y && rm -rf /var/lib/apt/lists/*
+RUN apt-get update && apt-get install wkhtmltopdf binutils -y && rm -rf /var/lib/apt/lists/*
37
+RUN strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
38
WORKDIR /app
39
EXPOSE 80
40
COPY --from=publish /app/publish .
0 commit comments