File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
66ARG 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
You can’t perform that action at this time.
0 commit comments