12345678910111213141516171819202122232425262728293031 |
- FROM ubuntu:22.04
- USER root
- ARG DEBIAN_FRONTEND=noninteractive
- ENV TZ=Europe/Berlin
- RUN apt-get update
- 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
- RUN curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && \
- chmod a+x /usr/bin/repo
- RUN groupadd -g 1000 ubuntu
- RUN useradd -g 1000 -m -s /bin/bash -u 1000 ubuntu
- RUN apt-get install -y locales
- RUN locale-gen "en_US.UTF-8"
- RUN dpkg-reconfigure locales
- ENV LANG en_US.UTF-8
- RUN apt-get install -y file
- USER ubuntu
- WORKDIR /home/ubuntu
- #RUN \
- # repo init -u https://github.com/STMicroelectronics/oe-manifest.git -b refs/tags/openstlinux-6.1-yocto-mickledore-mpu-v24.06.26 \
- # repo sync
|