add dockerfile

This commit is contained in:
Elias Ahokas
2025-09-20 21:06:37 +03:00
parent 6b0ce26dbd
commit dacbba592b

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# 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"]