Skip to content

Commit 9ca4d73

Browse files
committed
Add a Dockerfile to make Linux builds.
1 parent 1c8b51b commit 9ca4d73

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM ubuntu:18.04
2+
3+
RUN apt-get update && \
4+
apt-get install -y software-properties-common cmake libboost1.62-dev && \
5+
add-apt-repository ppa:ubuntu-toolchain-r/test && \
6+
apt-get install -y g++-8 && \
7+
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8

0 commit comments

Comments
 (0)