Do not cachebust jq
continuous-integration/drone/push Build is failing Details

master
Simon Bruder 2020-03-21 11:14:23 +00:00
parent a39ce7d87c
commit 14c0c93582
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 2 additions and 2 deletions

View File

@ -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 \