Dockerfile 944 B

12345678910111213141516171819202122232425262728293031
  1. FROM ubuntu:22.04
  2. USER root
  3. ARG DEBIAN_FRONTEND=noninteractive
  4. ENV TZ=Europe/Berlin
  5. RUN apt-get update
  6. RUN apt-get install -y repo git bsdmainutils build-essential chrpath cpio diffstat gawk gcc-multilib git-lfs iputils-ping libegl1-mesa libgmp-dev libmpc-dev libsdl1.2-dev libssl-dev libusb-1.0-0 lz4 pylint python3-git python3-jinja2 python3-pexpect python3-pip socat texinfo unzip wget xterm xz-utils zstd curl
  7. RUN curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && \
  8. chmod a+x /usr/bin/repo
  9. RUN groupadd -g 1000 ubuntu
  10. RUN useradd -g 1000 -m -s /bin/bash -u 1000 ubuntu
  11. RUN apt-get install -y locales
  12. RUN locale-gen "en_US.UTF-8"
  13. RUN dpkg-reconfigure locales
  14. ENV LANG en_US.UTF-8
  15. RUN apt-get install -y file
  16. USER ubuntu
  17. WORKDIR /home/ubuntu
  18. #RUN \
  19. # repo init -u https://github.com/STMicroelectronics/oe-manifest.git -b refs/tags/openstlinux-6.1-yocto-mickledore-mpu-v24.06.26 \
  20. # repo sync