Add icecc support

This commit is contained in:
Thomas Klaehn 2021-06-09 07:54:33 +02:00
parent 568ac4f807
commit 1ea050d960
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -21,5 +21,5 @@ docker build -t "<name>:<tag>" .
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) <name>:<tag> /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) <name>:<tag> /bin/bash
```