Merge pull request #814 from cgrs/feature/add-dapper

Allow Docker (dapper) builds
This commit is contained in:
Vadim Grigoruk 2019-03-01 17:32:02 +03:00 committed by GitHub
commit 1b9a8a68c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
Dockerfile.dapper Normal file
View File

@ -0,0 +1,6 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y git cmake libgtk-3-dev \
libglvnd-dev libglu1-mesa-dev freeglut3-dev libasound2-dev
WORKDIR ${DAPPER_SOURCE:-/source}
ENV DAPPER_OUTPUT bin
ENTRYPOINT ["sh", "-c", "cmake . && make -j4"]