mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-27 15:02:41 +00:00
* Update exempt labels for stale bot workflow Adds triaged and backlog to the list of exempt labels. * Update meshtastic/web to v2.6.7 (#8381) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update DFRobot_RTU to v1.0.6 (#8387) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update mcr.microsoft.com/devcontainers/cpp Docker tag to v2 (#8375) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * manual merge stale bot config (#8392) --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
45 lines
1.0 KiB
Docker
45 lines
1.0 KiB
Docker
# trunk-ignore-all(terrascan/AC_DOCKER_0002): Known terrascan issue
|
|
# trunk-ignore-all(hadolint/DL3008): Do not pin apt package versions
|
|
# trunk-ignore-all(hadolint/DL3013): Do not pin pip package versions
|
|
FROM mcr.microsoft.com/devcontainers/cpp:2-debian-12
|
|
|
|
USER root
|
|
|
|
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 \
|
|
usbutils \
|
|
hwdata \
|
|
gpg \
|
|
gnupg2 \
|
|
libusb-1.0-0-dev \
|
|
libuv1-dev \
|
|
libi2c-dev \
|
|
libxcb-xkb-dev \
|
|
libxkbcommon-dev \
|
|
libinput-dev \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pipx install platformio
|
|
|
|
COPY 99-platformio-udev.rules /etc/udev/rules.d/99-platformio-udev.rules
|
|
|
|
USER vscode
|
|
|
|
HEALTHCHECK NONE |