Always build with Release configuration
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2020-02-27 10:53:54 +00:00
parent 5b817a7162
commit a39ce7d87c
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 2 additions and 3 deletions

View File

@ -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