summaryrefslogtreecommitdiff
path: root/docker/biboumi-test/fedora/Dockerfile
blob: 45dbe76711363033c2a6cdbe913b0a4c56020aad (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-fedora-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 && ldconfig && rm -rf /litesql

WORKDIR /home/tester
USER tester