Lines Matching +full:docker +full:- +full:run
2 # Defines a docker image that can run Xtensa Qemu
6 # build docker image:
8 # ./docker-build.sh
10 # run docker image:
12 # ./scripts/docker-qemu.sh scrpits-or-command-you-want-run
23 # for non-interactive package install
26 RUN apt-get -y update && \
27 apt-get install -y \
31 apt-utils \
33 build-essential \
36 zlib1g-dev \
37 libglib2.0-dev \
38 libpixman-1-dev \
39 pkg-config \
46 RUN useradd --create-home -d /home/sof -u $UID -G sudo sof && \
52 ARG CLONE_DEFAULTS="--depth 5"
55 RUN cd /home/sof && git clone $CLONE_DEFAULTS --branch sof-v4.2 $SOF_REPO && \
58 sed -i 's#git://git.qemu.org#https://github.com/qemu#g' .gitmodules && \
59 sed -i 's#git://git.qemu-project.org#https://github.com/qemu#g' .gitmodules && \
60 ./configure --prefix=`pwd`/ --target-list=xtensa-softmmu --enable-coroutine-pool && \
64 RUN mkdir -p /home/sof/sof.git