This repository was archived by the owner on May 9, 2024. It is now read-only.
File tree 2 files changed +8
-9
lines changed
2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ RUN apt-get update && apt-get install -y \
17
17
tar \
18
18
vim \
19
19
wget \
20
- ca-certificates \
21
20
lsb-release \
21
+ software-properties-common \
22
22
--
23
23
24
24
# cmake
25
- RUN apt-get install -y \
25
+ RUN apt-get update && apt-get install -y \
26
26
libssl-dev \
27
27
libcurl4-openssl-dev \
28
28
--
@@ -43,12 +43,12 @@ RUN apt-get update && apt-get install -y \
43
43
gcc-9 \
44
44
g++-9 \
45
45
openjdk-11-jdk \
46
- --
47
- ENV PATH=/usr/lib/llvm-12/bin${PATH:+:${PATH}}
46
+ -- && \
47
+ update-alternatives \
48
+ --install /usr/bin/gcc gcc /usr/bin/gcc-9 800 \
49
+ --slave /usr/bin/g++ g++ /usr/bin/g++-9
48
50
49
- RUN update-alternatives \
50
- --install /usr/bin/gcc gcc /usr/bin/gcc-9 800 \
51
- --slave /usr/bin/g++ g++ /usr/bin/g++-9
51
+ ENV PATH=/usr/lib/llvm-12/bin${PATH:+:${PATH}}
52
52
53
53
# Dependencies
54
54
RUN apt-get update && apt-get install -y \
Original file line number Diff line number Diff line change 1
1
# Intel GPU stack
2
2
# https://dgpu-docs.intel.com/installation-guides/ubuntu/ubuntu-focal.html
3
- RUN apt-get install -y gpg-agent software-properties-common && \
4
- wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \
3
+ RUN wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | apt-key add - && \
5
4
apt-add-repository \
6
5
'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main' && \
7
6
apt-get update && \
You can’t perform that action at this time.
0 commit comments