mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-15 14:43:48 +00:00
15 lines
339 B
Docker
15 lines
339 B
Docker
# This is installing the pgvector extension for postgres
|
|
FROM postgres:latest
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
git \
|
|
postgresql-server-dev-all \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /tmp
|
|
RUN git clone https://github.com/pgvector/pgvector.git
|
|
|
|
WORKDIR /tmp/pgvector
|
|
RUN make
|
|
RUN make install
|