Do not use self contained deployment

master
Simon Bruder 2020-09-13 15:09:55 +02:00
parent 9b29cff93e
commit 550340b24e
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 2 additions and 3 deletions

View File

@ -18,13 +18,12 @@ RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest |
&& dotnet publish \
-c Release \
-r linux-x64 \
--self-contained true \
--no-self-contained \
-o /opt/osu/ \
-p:PublishTrimmed=true \
-p:Version=${OSU_VERSION} \
osu.Desktop
FROM mcr.microsoft.com/dotnet/core/runtime-deps
FROM mcr.microsoft.com/dotnet/core/runtime
RUN apt-get update \
&& apt-get -y install --no-install-recommends \