Skip to content

Commit 761283a

Browse files
authored
Merge pull request #793 from linuxserver/jellyfin-opencl-intel-debug
ignore debug packages
2 parents a80ee7d + 5c05b45 commit 761283a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
## Buildstage ##
4-
FROM ghcr.io/linuxserver/baseimage-alpine:3.17 as buildstage
4+
FROM ghcr.io/linuxserver/baseimage-alpine:3.18 as buildstage
55

66
ARG MOD_VERSION
77

@@ -10,13 +10,13 @@ RUN \
1010
if [ -z "${MOD_VERSION}" ]; then \
1111
MOD_VERSION=$(curl -sX GET "https://api.github.com/repos/intel/compute-runtime/releases/latest" | jq -r '.tag_name'); \
1212
fi && \
13-
COMP_RT_URLS=$(curl -sX GET "https://api.github.com/repos/intel/compute-runtime/releases/tags/${MOD_VERSION}" | jq -r '.body' | grep wget | grep -v ww47 | sed 's|wget ||g') && \
13+
COMP_RT_URLS=$(curl -sX GET "https://api.github.com/repos/intel/compute-runtime/releases/tags/${MOD_VERSION}" | jq -r '.body' | grep wget | grep -v .sum | grep -v .ddeb | sed 's|wget ||g') && \
1414
echo "**** grab debs ****" && \
1515
mkdir -p /root-layer/opencl-intel && \
1616
for i in $COMP_RT_URLS; do \
1717
echo "**** downloading ${i%$'\r'} ****" && \
1818
curl -o /root-layer/opencl-intel/$(basename "${i%$'\r'}") \
19-
-L "${i%$'\r'}"; \
19+
-fL "${i%$'\r'}"; \
2020
done
2121

2222
# copy local files

0 commit comments

Comments
 (0)