fix(devcontainer): Add packages required by grpcio

When running `pip3 install --user -r zephyr/scripts/requirements.txt`
(last step on https://zmk.dev/docs/development/setup), grpcio install
fails with the following error:

    FileNotFoundError: [Errno 2] No such file or directory: c++: c++

This happens due to missing dev tooling in the container.
This commit is contained in:
c10l 2024-03-22 00:02:59 +00:00
parent 931a36ff4a
commit ab9f180b3a

View file

@ -2,3 +2,4 @@ FROM docker.io/zmkfirmware/zmk-dev-arm:3.5
COPY .bashrc tmp
RUN mv /tmp/.bashrc ~/.bashrc
RUN apt-get update && apt-get install -y build-essential