Docker comments revised

This commit is contained in:
Nicolas Kruse 2025-02-27 17:33:03 +01:00
parent b0a99c505e
commit b37b54e561
1 changed files with 1 additions and 14 deletions

View File

@ -1,25 +1,12 @@
# Start with a base image containing build tools and libraries
#Change to debian:stable-20250224 if build fails
FROM debian:stable
# Set the working directory
WORKDIR /src
# Install necessary build tools
RUN apt-get update && apt-get install -y \
build-essential \
gcc
# g++ \
# make \
# wget \
# curl \
# git \
# ca-certificates \
# bison \
# flex \
# python3 \
# texinfo
# Install cross-compilers for x86, ARM, MIPS, and RISC-V
RUN apt-get install -y \
gcc-12-arm-linux-gnueabihf \
gcc-12-mips-linux-gnu \