add missing package + config for runner

This commit is contained in:
Dany LE 2025-03-21 19:19:15 +01:00
parent 9a7b7c6c4f
commit 2403bf91b1

View File

@ -7,6 +7,15 @@ RUN apt-get update && DEBIAN_FRONTEND="noninteractive" \
python3 python3-git python3-jinja2 python3-pexpect python3-pip \
python3-subunit socat texinfo unzip wget xz-utils zstd \
curl unzip libc6:i386 zlib1g:i386 zlib1g
# for the runner use
RUN apt-get update && apt-get --yes --no-install-recommends install \
nodejs npm git wget libfuse2 fuse3
RUN groupadd -g 1000 -o ci
RUN useradd -m -u 1000 -g 1000 -o -s /bin/bash ci
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8
USER ci
WORKDIR /home/ci