23 lines
570 B
Docker
23 lines
570 B
Docker
# This file was partly made with chatgpt & claude LLMS
|
|
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gawk wget git-core diffstat unzip texinfo gcc-multilib \
|
|
build-essential chrpath socat cpio python python3 python3-pip python3-pexpect \
|
|
xz-utils debianutils iputils-ping
|
|
|
|
RUN apt-get update && apt-get install -y locales \
|
|
&& locale-gen en_US.UTF-8 \
|
|
&& update-locale LANG=en_US.UTF-8
|
|
|
|
ENV LANG=en_US.UTF-8
|
|
ENV LANGUAGE=en_US:en
|
|
ENV LC_ALL=en_US.UTF-8
|
|
|
|
RUN useradd -ms /bin/bash yocto
|
|
USER yocto
|
|
WORKDIR /home/yocto
|
|
|
|
|
|
CMD ["/bin/bash"]
|