21 lines
785 B
Docker
21 lines
785 B
Docker
FROM ubuntu:jammy AS build-env
|
|
RUN dpkg --add-architecture i386
|
|
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" \
|
|
apt-get --yes --no-install-recommends install \
|
|
build-essential chrpath cpio debianutils diffstat \
|
|
file gawk gcc git iputils-ping libacl1 liblz4-tool locales locales-all \
|
|
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
|
|
|
|
USER ci
|
|
WORKDIR /home/ci |