xref: /btstack/test/fuzz/Dockerfile (revision d72e9d4b1d8cea3c48e9897368c446f554491bbf)
1# Baseimage Debin
2FROM debian
3
4# Install clang, cmake, ninja
5RUN apt-get update
6RUN apt-get install -y clang gdb lldb cmake ninja-build bsdmainutils
7
8