Skip to content

Commit 64720e5

Browse files
committed
fix package conflicts between legacy and stable
1 parent b98d4b0 commit 64720e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 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.21 as buildstage
4+
FROM ghcr.io/linuxserver/baseimage-alpine:3.21 AS buildstage
55

66
ARG MOD_VERSION
77

@@ -10,7 +10,7 @@ RUN \
1010
if [ -z "${MOD_VERSION}" ]; then \
1111
MOD_VERSION=$(curl -sfX GET "https://api.github.com/repos/intel/compute-runtime/releases/latest" | jq -r '.tag_name'); \
1212
fi && \
13-
COMP_RT_URLS_LEGACY1=$(curl -sfX GET "https://api.github.com/repos/intel/compute-runtime/releases/tags/24.35.30872.22" | jq -r '.body' | grep wget | grep -v .sum | grep -v .ddeb | sed 's|wget ||g') && \
13+
COMP_RT_URLS_LEGACY1=$(curl -sfX GET "https://api.github.com/repos/intel/compute-runtime/releases/tags/24.35.30872.22" | jq -r '.body' | grep wget | grep -v .sum | grep -v .ddeb | grep -v zero-gpu_ | grep -v opencl-icd_ | sed 's|wget ||g') && \
1414
echo "**** grab legacy1 debs ****" && \
1515
mkdir -p /root-layer/opencl-intel-legacy1 && \
1616
for i in $COMP_RT_URLS_LEGACY1; do \

0 commit comments

Comments
 (0)