Skip to content

Commit 6fe7ba6

Browse files
authored
Update Dockerfile
1 parent 01f1671 commit 6fe7ba6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ USER root
33

44
#====== Instructor Addition ======
55

6-
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg && \
6+
RUN RUN apt-get update && apt-get install -y wget && \
7+
apt-get clean && rm -rf /var/lib/apt/lists/* && \
8+
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg && \
79
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list
810

911
RUN apt-get update && apt-get upgrade -y && \
@@ -34,6 +36,7 @@ RUN apt-get update && apt-get install -y build-essential \
3436
openssh-server \
3537
vim \
3638
gdb \
39+
valgrind \
3740
&& apt-get clean && rm -rf /var/lib/apt/lists/*
3841

3942
# NVIDIA does not provide OpenCL passthru.

0 commit comments

Comments
 (0)