Always build with Release configuration
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5b817a7162
commit
a39ce7d87c
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue