1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/scripts/docker/ubuntu_latest.docker
2018-11-27 13:47:25 +01:00

33 lines
868 B
Docker

FROM ubuntu:rolling
RUN apt-get update \
&& apt-get install --no-install-recommends --no-upgrade -y \
build-essential \
cmake \
ninja-build \
gcc-7 \
g++-7 \
clang-6.0 \
llvm \
lcov \
curl \
libavcodec-dev \
libavformat-dev \
libboost-filesystem-dev \
libboost-program-options-dev \
libbullet-dev \
libglm-dev \
libopenal-dev \
libsdl2-dev \
libboost-test-dev \
libqt5opengl5-dev \
libfreetype6-dev \
iwyu \
qt5-default \
&& apt-get clean \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 60 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 \
&& update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-7 60
CMD ["/bin/bash"]