Travis: Try to use docker again

This commit is contained in:
Lynix
2018-01-13 11:44:10 +01:00
parent 4f6bf30f24
commit b9ace2e38d
2 changed files with 29 additions and 41 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM debian:stretch
RUN apt-get update && apt-get -y install && \
apt-get install -y clang && \
apt-get install -y libopenal-dev libsndfile1-dev && \
apt-get install -y libxcb-cursor-dev libxcb-ewmh-dev libxcb-randr0-dev libxcb-icccm4-dev libxcb-keysyms1-dev libx11-dev libfreetype6-dev && \
apt-get install -y mesa-common-dev libgl1-mesa-dev && \
apt-get install -y libassimp-dev
RUN mkdir /NazaraEngine
WORKDIR /NazaraEngine