diff --git a/Dockerfile b/Dockerfile index ff17bc8..fb8fbc4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk as builder ENV DOTNET_CLI_TELEMETRY_OPTOUT 1 ARG CACHEBUST=1 -ARG CONFIGURATION=Release RUN apt-get update \ && apt-get -y install jq @@ -11,8 +10,8 @@ RUN apt-get update \ RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \ && git clone --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \ && cd osu \ - && dotnet publish -c ${CONFIGURATION} -r linux-x64 --self-contained true -o /opt/osu/ osu.Desktop /p:PublishTrimmed=true \ - && echo "Version ${OSU_VERSION}, ${CONFIGURATION} build, Built on $(date '+%Y-%m-%d %H:%M')" > /opt/osu/version + && dotnet publish -c Release -r linux-x64 --self-contained true -o /opt/osu/ osu.Desktop /p:PublishTrimmed=true \ + && echo "Version ${OSU_VERSION}, Built on $(date '+%Y-%m-%d %H:%M')" > /opt/osu/version FROM mcr.microsoft.com/dotnet/core/runtime-deps