Removed beignet and icr as they aren't needed.

Fixes plexinc/plex-media-server#14196
This commit is contained in:
Graham Booker 2023-03-13 14:34:12 -05:00
parent 2677bb69e3
commit dad8fe0493
No known key found for this signature in database
GPG Key ID: F023F35DADC3343C

View File

@ -21,8 +21,6 @@ RUN \
xmlstarlet \
uuid-runtime \
unrar \
beignet-opencl-icd \
ocl-icd-libopencl1 \
&& \
\
# Fetch and extract S6 overlay
@ -30,14 +28,6 @@ RUN \
tar xzf /tmp/s6-overlay-${S6_OVERLAY_ARCH}.tar.gz -C / --exclude='./bin' && \
tar xzf /tmp/s6-overlay-${S6_OVERLAY_ARCH}.tar.gz -C /usr ./bin && \
\
# Fetch and install Intel Compute Runtime and its deps
curl -J -L -o /tmp/gmmlib.deb https://github.com/intel/compute-runtime/releases/download/${INTEL_NEO_VERSION}/intel-gmmlib_${INTEL_GMMLIB_VERSION}_amd64.deb && \
apt install -y /tmp/gmmlib.deb && \
curl -J -L -o /tmp/#1.deb https://github.com/intel/intel-graphics-compiler/releases/download/igc-${INTEL_IGC_VERSION}/{intel-igc-core,intel-igc-opencl}_${INTEL_IGC_VERSION}_amd64.deb && \
apt install -y /tmp/intel-igc-core.deb /tmp/intel-igc-opencl.deb && \
curl -J -L -o /tmp/intel-opencl.deb https://github.com/intel/compute-runtime/releases/download/${INTEL_NEO_VERSION}/intel-opencl_${INTEL_NEO_VERSION}_amd64.deb && \
apt install -y /tmp/intel-opencl.deb && \
\
# Add user
useradd -U -d /config -s /bin/false plex && \
usermod -G users plex && \