compiling fsbl with docker works now! See README

This commit is contained in:
Duesentrieb71
2024-03-21 17:47:01 +01:00
parent 102e30a2b5
commit 30b8dd2abe
3 changed files with 31 additions and 56 deletions

View File

@ -0,0 +1,15 @@
FROM debian:12.5
ENV DEBIAN_FRONTEND=noninteractive
# Install required packages
RUN apt-get update && apt-get install -y \
make \
cmake \
gcc-arm-none-eabi \
&& rm -rf /var/lib/apt/lists/*
# Remove the package lists to reduce the image size
WORKDIR /project/