mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-02 22:13:36 +00:00
8 lines
137 B
Docker
8 lines
137 B
Docker
# Baseimage Debin
|
|
FROM debian
|
|
|
|
# Install clang, cmake, ninja
|
|
RUN apt-get update
|
|
RUN apt-get install -y clang gdb lldb cmake ninja-build
|
|
|