diff --git a/Dockerfile b/Dockerfile index 4c86d98..11e550a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,11 +8,15 @@ RUN sed -i -e 's/.main$/ main contrib/' /etc/apt/sources.list # Install yocto depencencies RUN apt-get update && apt-get install -yq 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 + python3-pip python3-pexpect xz-utils debianutils iputils-ping screen tmux \ + libncurses-dev curl + # Install repo RUN apt-get install -yq repo +RUN apt-get install -yq icecc + # Reconfigure Dash RUN echo "dash dash/sh boolean false" | debconf-set-selections && dpkg-reconfigure dash diff --git a/README.md b/README.md index e0449be..ba7dc32 100644 --- a/README.md +++ b/README.md @@ -21,5 +21,5 @@ docker build -t ":" . Run from HOME directory: ```shell -docker run -it --rm -v=/var/lib/sss/pipes/:/var/lib/sss/pipes/:rw -v $(pwd):$(pwd) -w $(pwd) -u $(id -u $USER):$(id -g $USER) : /bin/bash +docker run -it --rm --network host -v=/var/lib/sss/pipes/:/var/lib/sss/pipes/:rw -v $(pwd):$(pwd) -w $(pwd) -u $(id -u $USER):$(id -g $USER) : /bin/bash ```