mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 17:05:31 -04:00
9 lines
266 B
Docker
9 lines
266 B
Docker
FROM postgres:16
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends postgresql-16-pgvector && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /docker-entrypoint-initdb.d
|
|
ADD create_extension.sql /docker-entrypoint-initdb.d |