# 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.io/alpine:edge

ENV LC_ALL C.UTF-8

# py3-slixmpp is in testing repo
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories

# Needed to build biboumi
RUN apk add --no-cache \
git \
ergo \
make \
cmake \
g++ \
libuuid \
udns-dev \
expat-dev \
libidn-dev \
sqlite-dev \
botan3-dev \
util-linux-dev \
libgcrypt-dev \
postgresql-dev \
catch2-3 \
valgrind \
py3-pip \
py3-lxml \
py3-slixmpp \
python3-dev \
libffi-dev \
go \
rust \
cargo \
wget

