]> git.localhorst.tv Git - blobs.git/blob - scripts/docker/debian-build-testing/Dockerfile
stolen dockerfiles from blank
[blobs.git] / scripts / docker / debian-build-testing / Dockerfile
1 FROM localhorsttv/debian-run:testing
2
3 RUN apt -y install build-essential \
4         && apt-get -y clean \
5         ;
6
7 RUN apt -y install --no-install-recommends \
8         cppcheck \
9         libalut-dev \
10         libcppunit-dev \
11         libglew-dev \
12         libglm-dev \
13         libopenal-dev \
14         libsdl2-dev \
15         libsdl2-image-dev \
16         libsdl2-net-dev \
17         libsdl2-ttf-dev \
18         zlib1g-dev \
19         && apt-get -y clean \
20         ;