Dockerfile fixes

This commit is contained in:
BenDroid 2018-04-14 20:53:36 +02:00
parent 1c6f96b523
commit b6500b9d3f

View file

@ -1,8 +1,11 @@
FROM ubuntu:latest FROM ubuntu:latest
RUN apt-get update && \
apt-get install software-properties-common git build-essential libbz2-dev cmake libuv1-dev libssl-dev wget -y
RUN add-apt-repository ppa:jonathonf/gcc-7.1 && \ RUN add-apt-repository ppa:jonathonf/gcc-7.1 && \
apt-get update && \ apt-get update && \
apt-get install gcc-7 g++-7 software-properties-common git build-essential libbz2-dev cmake libuv1-dev libssl-dev wget -y && \ apt-get install gcc-7 g++-7 && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*