summaryrefslogtreecommitdiff
path: root/docker/biboumi-test/alpine/Dockerfile
blob: ab288b6a91198ef744b1a6d5614e2ced88bd6678 (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-alpine-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 || true

WORKDIR /home/tester
USER tester