docker_build: add bison and flex to apt install list

There are warnings about bison and flex not available.
Interestingly these were not fatal errors but time to fix them.

Signed-off-by: Fred Oh <fred.oh@linux.intel.com>
This commit is contained in:
Fred Oh 2021-05-17 11:11:53 -07:00 committed by Liam Girdwood
parent 62ead96614
commit af1e38a995
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ RUN apt-get -y update && \
libpixman-1-dev \
pkg-config \
sudo \
bsdmainutils
bsdmainutils \
bison \
flex
# Set up sof user
RUN useradd --create-home -d /home/sof -u $UID -G sudo sof && \