Files
comp.ce.460-embedded-linux-…/Dockerfile
Elias Ahokas dacbba592b add dockerfile
2025-09-21 17:14:35 +03:00

15 lines
387 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 useradd -ms /bin/bash yocto
USER yocto
WORKDIR /home/yocto
CMD ["/bin/bash"]