9 lines
305 B
Text
9 lines
305 B
Text
|
FROM tensorchord/pgvecto-rs-binary:pg16-v0.2.1-amd64 as binary
|
||
|
|
||
|
FROM postgres:16.4-bookworm
|
||
|
|
||
|
COPY --from=binary /pgvecto-rs-binary-release.deb /tmp/vectors.deb
|
||
|
RUN apt install -y /tmp/vectors.deb && rm -f /tmp/vectors.deb
|
||
|
|
||
|
LABEL org.opencontainers.image.source="https://git.comfycamp.space/lumin/homelab"
|