2024-07-09 14:58:07 +02:00
|
|
|
# Configuration file to install the recipe dependencies inside the Podman container
|
|
|
|
|
2024-05-14 21:39:43 +02:00
|
|
|
FROM debian:bookworm-20240513-slim
|
2022-11-12 00:23:08 +01:00
|
|
|
|
2024-05-14 21:39:43 +02:00
|
|
|
# _UID_ must be replaced with the user's uid on host
|
|
|
|
# podman root is mapped to your user id on host during build,
|
|
|
|
# poduser is mapped to your user id during podman run
|
|
|
|
RUN useradd --create-home --no-log-init --uid _UID_ poduser \
|
|
|
|
&& chown -R root:root /home \
|
|
|
|
&& apt-get update \
|
2022-11-12 00:23:08 +01:00
|
|
|
&& apt-get install -y --no-install-recommends \
|
2024-12-19 18:46:58 +01:00
|
|
|
appstream \
|
2024-09-19 22:27:17 +02:00
|
|
|
ant \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
autopoint \
|
|
|
|
bison \
|
|
|
|
build-essential \
|
|
|
|
clang \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
dos2unix \
|
|
|
|
doxygen \
|
|
|
|
file \
|
|
|
|
flex \
|
|
|
|
fuse3 \
|
|
|
|
g++ \
|
|
|
|
genisoimage \
|
|
|
|
git \
|
2024-10-31 01:15:52 +01:00
|
|
|
git-lfs \
|
2024-09-19 22:27:17 +02:00
|
|
|
gperf \
|
2024-12-19 18:46:58 +01:00
|
|
|
expect \
|
2024-09-19 22:27:17 +02:00
|
|
|
intltool \
|
2024-12-19 18:46:58 +01:00
|
|
|
libc6-dev-i386 \
|
2024-09-19 22:27:17 +02:00
|
|
|
libexpat-dev \
|
2024-12-19 18:46:58 +01:00
|
|
|
libfuse3-dev \
|
|
|
|
libfontconfig1-dev \
|
2024-09-19 22:27:17 +02:00
|
|
|
libgmp-dev \
|
|
|
|
libhtml-parser-perl \
|
|
|
|
libjpeg-dev \
|
|
|
|
libmpfr-dev \
|
|
|
|
libpng-dev \
|
|
|
|
libsdl1.2-dev \
|
|
|
|
libsdl2-ttf-dev \
|
|
|
|
llvm \
|
|
|
|
lua5.4 \
|
|
|
|
lzip \
|
|
|
|
m4 \
|
|
|
|
make \
|
|
|
|
meson \
|
|
|
|
nasm \
|
|
|
|
ninja-build \
|
2024-09-26 15:12:26 +02:00
|
|
|
ssh \
|
2024-09-19 22:27:17 +02:00
|
|
|
patch \
|
|
|
|
perl \
|
|
|
|
pkg-config \
|
|
|
|
po4a \
|
|
|
|
protobuf-compiler \
|
|
|
|
python3 \
|
|
|
|
python3-mako \
|
|
|
|
rsync \
|
|
|
|
scons \
|
2024-12-19 18:46:58 +01:00
|
|
|
syslinux-utils \
|
2024-09-19 22:27:17 +02:00
|
|
|
texinfo \
|
|
|
|
unzip \
|
|
|
|
wget \
|
|
|
|
xdg-utils \
|
|
|
|
xxd \
|
|
|
|
zip \
|
2024-10-06 20:04:24 +02:00
|
|
|
zlib1g-dev \
|
2024-12-02 12:21:45 +01:00
|
|
|
zstd \
|
2024-12-19 18:46:58 +01:00
|
|
|
help2man \
|
2025-02-10 07:19:20 +01:00
|
|
|
autoconf2.69 \
|
|
|
|
patchelf
|