mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-13 18:50:33 +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
|
|
|