mirror of
https://github.com/koush/scrypted.git
synced 2026-02-13 02:12:58 +00:00
10 lines
626 B
Docker
10 lines
626 B
Docker
ARG BASE="ghcr.io/koush/scrypted-common:20-jammy-full"
|
|
FROM $BASE
|
|
|
|
ENV SCRYPTED_DOCKER_FLAVOR="intel"
|
|
|
|
RUN curl https://raw.githubusercontent.com/koush/scrypted/main/install/docker/install-intel-oneapi.sh | bash
|
|
# these paths must be updated if oneapi is updated via the install-intel-oneapi.sh script
|
|
# note that the 2022.2 seems to be a typo in the intel script...?
|
|
ENV LD_LIBRARY_PATH=/opt/intel/oneapi/tcm/1.4/lib:/opt/intel/oneapi/umf/0.11/lib:/opt/intel/oneapi/tbb/2022.2/env/../lib/intel64/gcc4.8:/opt/intel/oneapi/mkl/2025.2/lib:/opt/intel/oneapi/compiler/2025.2/opt/compiler/lib:/opt/intel/oneapi/compiler/2025.2/lib
|