# Dockerfile to build tools for building firmware binary # # Thanks to for inspiration. # # Also somewhat based on # # FROM alpine:3.16.0 WORKDIR /work RUN apk add --no-cache git python3 py-pip musl-dev make rsync autoconf automake libtool && \ apk add gcc-arm-none-eabi newlib-arm-none-eabi --update-cache \ --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ RUN ln -s /usr/bin/python3 /usr/bin/python