Compare commits

..

No commits in common. "72803468f6390d75dc6dd93c16acd3331653eca2" and "ad15a2a5162d2b213dab0fa31774329c9975b940" have entirely different histories.

2 changed files with 13 additions and 10 deletions

View file

@ -10,15 +10,8 @@ ARG CACHEBUST=1
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 \
&& cd osu \
&& curl https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/games/osu-lazer/bypass-tamper-detection.patch | git apply \
&& dotnet publish \
-c Release \
-r linux-x64 \
--self-contained true \
-o /opt/osu/ \
-p:PublishTrimmed=true \
-p:Version=${OSU_VERSION} \
osu.Desktop
&& 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
@ -36,4 +29,6 @@ COPY --from=builder /opt/osu/ /opt/osu/
RUN adduser --disabled-password --gecos '' osu
USER osu
ENTRYPOINT ["/opt/osu/osu!"]
COPY entrypoint.sh /usr/local/bin/
ENTRYPOINT ["entrypoint.sh"]

8
entrypoint.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
cat << EOF
┏━┓┏━┓╻ ╻╻
┃ ┃┗━┓┃ ┃╹
┗━┛┗━┛┗━┛╹
EOF
cat /opt/osu/version
exec /opt/osu/osu!