summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 62b9af6f493aadc9af60222a4e32825150d15ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM alpine:3.17.0

# Install toolchain
RUN apk update && \
    apk upgrade && \
    apk add git \
            python3 \
            py3-pip \
            cmake \
            build-base \
            libusb-dev \
            bsd-compat-headers \
            newlib-arm-none-eabi \
            gcc-arm-none-eabi \
            valgrind