mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-14 03:44:14 +00:00
8 lines
128 B
Docker
8 lines
128 B
Docker
|
# Baseimage Debin
|
||
|
FROM debian
|
||
|
|
||
|
# Install clang, cmake, ninja
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y clang cmake ninja-build
|
||
|
|