Files
tonberry-pico/software/Dockerfile.build
Matthias Blankertz 9c898853f8
All checks were successful
Build RPi Pico firmware image / Build-Firmware (push) Successful in 2m57s
Check code formatting / Check-C-Format (push) Successful in 6s
Check code formatting / Check-Python-Flake8 (push) Successful in 8s
Check code formatting / Check-Bash-Shellcheck (push) Successful in 4s
Run unit tests on host / Run-Unit-Tests (push) Successful in 7s
ci: Add firmware build step
Try to build the actual firmware image in CI
2025-03-10 20:17:27 +01:00

9 lines
359 B
Docker

# Image: git.ka.blankertz.org/tonberry/tonberry-pico/build:latest
FROM gitea/runner-images:ubuntu-22.04
# Install gcc-arm-none-eabi
RUN apt update && \
DEBIAN_FRONTEND=noninteractive \
apt install -y --no-install-recommends cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib \
&& apt clean && rm -rf /var/lib/apt/lists/*