diff --git a/Dockerfile b/Dockerfile index 9ddbed9..cffc40a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ No newline at end of file +ENV LANGUAGE=en_US.UTF-8 + +USER ci +WORKDIR /home/ci \ No newline at end of file