From 1ec5b007bef58928a3437c161d7760ba6562365e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 13 Dec 2019 20:08:35 +0000 Subject: [PATCH] Trim published build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e554d3..f193618 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ARG CONFIGURATION=Release RUN git clone --depth=50 https://github.com/ppy/osu \ && cd osu \ && git checkout ${GIT_COMMIT} \ - && dotnet publish -c ${CONFIGURATION} -r linux-x64 --self-contained true -o /opt/osu/ osu.Desktop + && dotnet publish -c ${CONFIGURATION} -r linux-x64 --self-contained true -o /opt/osu/ osu.Desktop /p:PublishTrimmed=true FROM mcr.microsoft.com/dotnet/core/runtime-deps