summaryrefslogtreecommitdiff
path: root/docker/biboumi-test/debian/Dockerfile
blob: b811ea402b7a646c53a8ca0e5f342a5629247ccd (plain)
1
2
3
4
5
6
7
8
9
10
# This Dockerfile creates a docker image suitable to run biboumi’s build and
# tests.  For example, it can be used on with gitlab-ci.

FROM docker.louiz.org/biboumi-test-debian-base

# Install litesql
RUN git clone git://git.louiz.org/litesql && mkdir /litesql/build && cd /litesql/build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make -j8 && cd /litesql/build && make install && rm -rf /litesql && ldconfig

WORKDIR /home/tester
USER tester