From dacbba592bb62bffc195ee52fd86dbd467395f56 Mon Sep 17 00:00:00 2001 From: Elias Ahokas Date: Sat, 20 Sep 2025 21:06:37 +0300 Subject: [PATCH] add dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4607acc --- /dev/null +++ b/Dockerfile @@ -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"]