arm-gcc-playground/Dockerfile

12 lines
234 B
Docker
Raw Normal View History

# Debian bookworm is debian12.
FROM debian:bookworm as setup
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y gcc-arm-none-eabi cmake
RUN mkdir /build
2024-01-21 16:14:56 +01:00
FROM scratch
COPY --from=setup / /
WORKDIR /build