mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 10:19:59 +00:00
25 lines
608 B
Docker
25 lines
608 B
Docker
FROM mcr.microsoft.com/devcontainers/cpp:1-debian-12
|
|
|
|
# [Optional] Uncomment this section to install additional packages.
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends \
|
|
ca-certificates \
|
|
g++ \
|
|
git \
|
|
libbluetooth-dev \
|
|
libgpiod-dev \
|
|
liborcania-dev \
|
|
libssl-dev \
|
|
libulfius-dev \
|
|
libyaml-cpp-dev \
|
|
pipx \
|
|
pkg-config \
|
|
python3 \
|
|
python3-pip \
|
|
python3-venv \
|
|
python3-wheel \
|
|
wget \
|
|
zip \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pipx install platformio==6.1.15 |