Fix comments left over from experiments

This commit is contained in:
Simon Bruder 2024-05-10 23:43:02 +02:00
parent 5eafc8f24b
commit b01a15fbf7
Signed by: simon
GPG key ID: 347FF8699CDA0776

View file

@ -20,11 +20,13 @@ RUN --mount=type=cache,target=/root/.nuget/packages --mount=type=cache,target=/r
-p:Version=${OSU_VERSION} \
osu.Desktop
# Generic builder for rulesets (using onbuild and args)
# Generic builder for rulesets
FROM mcr.microsoft.com/dotnet/sdk:8.0 as builder-ruleset-generic
COPY ./build-ruleset.sh /usr/local/bin/build-ruleset
# External rulesets
FROM builder-ruleset-generic as builder-swing
RUN --mount=type=cache,target=/root/.nuget/packages --mount=type=cache,target=/root/.local/share/NuGet/http-cache build-ruleset https://github.com/EVAST9919/lazer-swing
@ -40,6 +42,7 @@ RUN --mount=type=cache,target=/root/.nuget/packages --mount=type=cache,target=/r
FROM builder-ruleset-generic as builder-sentakki
RUN --mount=type=cache,target=/root/.nuget/packages --mount=type=cache,target=/root/.local/share/NuGet/http-cache build-ruleset https://github.com/LumpBloom7/sentakki
# Runtime container
FROM mcr.microsoft.com/dotnet/runtime:8.0
RUN apt-get update \