Merge branch 'dev' into vecstores

This commit is contained in:
Ibis Prevedello 2023-04-10 10:20:56 -03:00
commit fee2e52ec1
15 changed files with 325 additions and 213 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.10-slim
WORKDIR /app
# Install Poetry
RUN apt-get update && apt-get install gcc curl build-essential -y
RUN apt-get update && apt-get install gcc g++ curl build-essential -y
RUN curl -sSL https://install.python-poetry.org | python3 -
# # Add Poetry to PATH
ENV PATH="${PATH}:/root/.local/bin"