dahdi-linux/test/docker/debianstable
Shaun Ruffell 90e8a54e3a Add docker-compose.yml to be used for compile tests
Ideally this will be expanded in order to simplify compilation tests of
DAHDI on supported distributions.

Signed-off-by: Shaun Ruffell <sruffell@sruffell.net>
2020-02-23 19:39:26 -06:00

13 lines
212 B
Plaintext

FROM debian:stable
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
gcc \
git \
linux-headers-amd64 \
make \
wget
CMD ["/source/test/test-build.sh"]