8 lines
211 B
Docker
8 lines
211 B
Docker
FROM postgres:17
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
postgresql-17-pgvector \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN echo "CREATE EXTENSION pgvector;" >> /docker-entrypoint-initdb.d/01-pgvector.sql
|