yoheinakajima / babyagi

MIT License
19.73k stars 2.58k forks source link

Docker build broken #240

Closed jmtatsch closed 1 year ago

jmtatsch commented 1 year ago

chromadb needs to build hnswlib which requires a c++11 capable compiler which is not contained in the python:3.11-slim image. Solution: install build-essentials

RUN apt-get update && apt-get install build-essential -y