mirror of
https://github.com/AllStarLink/dahdi-linux.git
synced 2026-08-26 14:27:35 -04:00
Ideally this will be expanded in order to simplify compilation tests of DAHDI on supported distributions. Signed-off-by: Shaun Ruffell <sruffell@sruffell.net>
12 lines
212 B
Text
12 lines
212 B
Text
FROM debian:testing
|
|
|
|
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"]
|