zmk/.devcontainer/Dockerfile
c10l ab9f180b3a 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.
2024-03-22 00:14:34 +00:00

5 lines
148 B
Docker

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