mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 09:55:45 +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
|
|
|