Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
2403bf91b1 | |||
9a7b7c6c4f | |||
|
7d9f09eaba | ||
|
09e3c5d6a7 | ||
|
2bd5e258bd | ||
|
9a6351faeb | ||
|
6eb8151504 | ||
|
8b7a34b2a6 | ||
|
ca78d529ba | ||
|
57fefd9699 | ||
|
e235cfa3cb | ||
|
e1c0df3aac |
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user