Skip to content

Commit

Permalink
Add libpthreadpool to development Docker image
Browse files Browse the repository at this point in the history
After the bump to a more recent tflite version, a new system dependency,
libpthreadpool (under the libpthreadpool-dev package on debian) was
introduced. I forgot to add this dependency to the development docker
image, so it currently fails to build. This patch fixes that.
  • Loading branch information
boomanaiden154 committed Nov 14, 2023
1 parent f7bf19d commit cba87f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion experimental/docker/development.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ RUN apt-get update && \
software-properties-common \
cmake \
git \
vim
vim \
libpthreadpool-dev
RUN mkdir /tflite
WORKDIR /tflite
COPY buildbot/build_tflite.sh ./
Expand Down

0 comments on commit cba87f7

Please sign in to comment.