9 lines
295 B
Docker
9 lines
295 B
Docker
FROM postgres:15
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
postgresql-15-pgvector \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY create-tablespaces.bash /docker-entrypoint-initdb.d/00-create-tablespaces.bash
|
|
RUN echo "CREATE EXTENSION pgvector;" >> /docker-entrypoint-initdb.d/01-pgvector.sql
|