diff --git a/Dockerfile b/Dockerfile index fb8fbc4..46977e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ FROM mcr.microsoft.com/dotnet/core/sdk as builder ENV DOTNET_CLI_TELEMETRY_OPTOUT 1 -ARG CACHEBUST=1 - RUN apt-get update \ && apt-get -y install jq +ARG CACHEBUST=1 + 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 \