Skip to content

Commit

Permalink
fix some builds
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
Jess Frazelle committed Dec 29, 2018
1 parent 37eb951 commit 60dbf50
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cloudapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache \
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
&& gem install cloudapp --no-rdoc --no-ri \
&& gem install cloudapp --no-document \
&& apk del .build-deps

ENTRYPOINT ["cloudapp"]
2 changes: 1 addition & 1 deletion gmail-britta/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ RUN apk add --no-cache \
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
&& gem install gmail-britta --no-rdoc --no-ri \
&& gem install gmail-britta --no-document \
&& apk del .build-deps
5 changes: 4 additions & 1 deletion latest-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ get_latest() {
local repo=$1

local resp
resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases" | jq --raw-output '[.[] | select(.prerelease == false)]')
resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases")
if [[ "$repo" != "Radarr/Radarr" ]]; then
resp=$(echo "$resp" | jq --raw-output '[.[] | select(.prerelease == false)]')
fi
local tag
tag=$(echo "$resp" | jq -e --raw-output .[0].tag_name)
local name
Expand Down
2 changes: 1 addition & 1 deletion radarr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache \
--repository https://dl-4.alpinelinux.org/alpine/edge/testing

# https://github.com/Radarr/Radarr/releases
ENV RADARR_VERSION v2.0.0.4472
ENV RADARR_VERSION v0.2.0.1217
RUN mkdir -p /opt/radarr \
&& wget "https://github.com/Radarr/Radarr/releases/download/${RADARR_VERSION}/Radarr.${RADARR_VERSION}.linux.tar.gz" -O /tmp/radarr.tar.gz \
&& tar -xzvf /tmp/radarr.tar.gz -C /opt/radarr --strip-components 1 \
Expand Down
2 changes: 1 addition & 1 deletion t/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache \
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
&& gem install io-console t --no-rdoc --no-ri \
&& gem install io-console t --no-document \
&& apk del .build-deps

ENTRYPOINT ["t"]
2 changes: 1 addition & 1 deletion travis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk add --no-cache \
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
&& gem install travis --no-rdoc --no-ri \
&& gem install travis --no-document \
&& apk del .build-deps

ENTRYPOINT ["travis"]

0 comments on commit 60dbf50

Please sign in to comment.