File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
WORKDIR /project
6
6
7
- RUN echo "*** Installing gcc (4.9->7 ) and clang (3.8->6) ***" \
7
+ RUN echo "*** Installing gcc (4.9->8 ) and clang (3.8->6) ***" \
8
8
&& DEBIAN_FRONTEND=noninteractive apt-get update \
9
9
&& apt-get dist-upgrade -y \
10
10
&& echo "deb http://ftp.us.debian.org/debian jessie main contrib non-free" >> /etc/apt/sources.list.d/jessie.list \
11
11
&& echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list \
12
12
&& apt-get update \
13
13
&& apt-get install -y cmake \
14
- && apt-get install -y g++-4.9 g++-5 g++-6 g++-7 \
14
+ && apt-get install -y g++-4.9 g++-5 g++-6 g++-7 g++-8 \
15
15
&& apt-get install -y clang++-3.8 \
16
16
&& apt-get install -y clang++-3.9 \
17
17
&& apt-get install -y clang++-4.0 \
@@ -20,7 +20,7 @@ RUN echo "*** Installing gcc (4.9->7) and clang (3.8->6) ***" \
20
20
&& apt-get autoremove --purge -y \
21
21
&& apt-get autoclean -y \
22
22
&& rm -rf /var/cache/apt/* /tmp/* \
23
- && echo "Setting g++ 7 as default compiler" \
24
- && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 1
23
+ && echo "Setting g++ 8 as default compiler" \
24
+ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 1
25
25
26
26
ENTRYPOINT [ "/usr/bin/g++" ]
You can’t perform that action at this time.
0 commit comments