1
0
forked from me/IronOS
Files
IronOS/Dockerfile
Ben V. Brown b6d2846ead test
2022-01-06 18:58:58 +11:00

17 lines
525 B
Docker

FROM alpine:3.15
LABEL maintainer="Ben V. Brown <ralim@ralimtek.com>"
WORKDIR /build
# Installing the two compilers, python3, python3 pip, clang format
# Compilders ->gcc-* newlib-*
# Python3 -> py*
# Misc -> findutils make git clang (for clang-format)
RUN apk add --no-cache gcc-riscv-none-elf gcc-arm-none-eabi python3 py3-pip make git clang newlib-riscv-none-elf newlib-arm-none-eabi findutils
# Install Python3 packages
RUN python3 -m pip install bdflib black
COPY . /build/source
COPY ./ci /build/ci