Remove pdb's and json's on build. Remove EnsureLoaded call from Entertainment module.

This commit is contained in:
West14
2022-01-02 22:10:08 +02:00
parent b6e622161b
commit d145aced57
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ COPY . .
RUN dotnet publish -c release -o /app --no-restore Kruzya.TelegramBot.sln && \
mkdir /app/modules && \
cp /app/TelegramBot.*.dll /app/modules/ && \
rm -f /app/TelegramBot.*.dll
rm -f /app/TelegramBot.*.dll /app/TelegramBot.*.pdb /app/TelegramBot.*.json
# Now reuse image with only runtime
FROM mcr.microsoft.com/dotnet/aspnet:5.0.13-alpine3.14-amd64