We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b09e4 commit f3dcfceCopy full SHA for f3dcfce
1 file changed
Dockerfile
@@ -24,10 +24,11 @@ RUN \
24
YAAK_RELEASE=$(curl -sX GET "https://api.github.com/repos/mountain-loop/yaak/releases/latest" \
25
| jq -r .tag_name); \
26
fi && \
27
- YAAK_VERSION=$(echo "${YAAK_RELEASE}" | sed 's|^v||') && \
28
- curl -o \
+ YAAK_URL=$(curl -sX GET "https://api.github.com/repos/mountain-loop/yaak/releases/tags/${YAAK_RELEASE}" | jq -r '.assets[].browser_download_url' \
+ | grep "amd64" | grep ".deb$") && \
29
+ curl -fo \
30
/tmp/yaak.deb -L \
- "https://github.com/mountain-loop/yaak/releases/download/v${YAAK_VERSION}/yaak_${YAAK_VERSION}_amd64.deb" && \
31
+ "${YAAK_URL}" && \
32
apt-get install -y --no-install-recommends \
33
/tmp/yaak.deb && \
34
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
0 commit comments