Skip to content

Commit 2600ab2

Browse files
committed
dummy
1 parent 5a00a85 commit 2600ab2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
ARG base_tag=alldeps
2+
ARG base_image=ghcr.io/intel/llvm/ubuntu2404_intel_drivers
3+
4+
FROM $base_image:$base_tag
5+
6+
USER root
7+
8+
COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
9+
RUN mkdir -p /opt/sycl
10+
ADD sycl_linux.tar.gz /opt/sycl/
11+
12+
ENV PATH /opt/sycl/bin:$PATH
13+
ENV LD_LIBRARY_PATH /opt/sycl/lib:$LD_LIBRARY_PATH
14+
15+
USER sycl_ci
16+
17+
ENTRYPOINT ["/bin/bash", "/drivers_entrypoint.sh"]
18+
19+

0 commit comments

Comments
 (0)