Compare commits

...

3 Commits

Author SHA1 Message Date
Simon Bruder e307f5a75c
Add 3rd party rulesets
continuous-integration/drone/push Build is passing Details
2020-09-13 15:35:43 +02:00
Simon Bruder 550340b24e
Do not use self contained deployment 2020-09-13 15:09:55 +02:00
Simon Bruder 9b29cff93e
Make cachebust parameter available as env var
This allows using an already built image that was built with cachebust
set without rebuilding osu.
2020-09-13 15:02:53 +02:00
1 changed files with 25 additions and 3 deletions

View File

@ -8,6 +8,7 @@ RUN apt-get update \
COPY disable-deployed-build.patch /tmp/
ARG CACHEBUST=1
ENV CACHEBUST=$CACHEBUST
RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \
&& git clone --depth=1 --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \
@ -17,13 +18,34 @@ 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
RUN for ruleset in \
"Bosu|https://github.com/EVAST9919/bosu" \
"Hitokori|https://github.com/Flutterish/Hitokori" \
"Karaoke|https://github.com/karaoke-dev/karaoke" \
"Mvis|https://github.com/EVAST9919/lazer-m-vis" \
"Rush|https://github.com/swoolcock/rush" \
"Sentakki|https://github.com/LumpBloom7/sentakki" \
"Swing|https://github.com/EVAST9919/lazer-swing" \
"Tau|https://github.com/Altenhh/tau" \
; do \
repo_url="$(echo $ruleset | cut -d'|' -f2)" \
&& assembly_name="osu.Game.Rulesets.$(echo $ruleset | cut -d'|' -f1)" \
&& git clone --depth=1 "$repo_url" ruleset \
&& cd ruleset \
&& dotnet build \
-c Release \
"$assembly_name" \
&& cp "${assembly_name}"/bin/Release/net*/"${assembly_name}".dll /opt/osu/ \
&& cd .. \
&& rm -rf ruleset \
; done
FROM mcr.microsoft.com/dotnet/core/runtime
RUN apt-get update \
&& apt-get -y install --no-install-recommends \