Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
ARG PGVECTOR_TAG=v0.6.2
ARG PG_MAJOR=16
ARG PGVECTOR_TAG=v0.5.1
ARG PG_MAJOR=11
FROM bitnami/git:2.44.0 AS git


ARG PGVECTOR_TAG
WORKDIR /workspace
RUN git clone https://github.com/pgvector/pgvector && cd pgvector && git checkout ${PGVECTOR_TAG}

ARG PG_MAJOR
FROM bitnami/postgresql:${PG_MAJOR}-debian-12
FROM bitnami/postgresql:${PG_MAJOR}-debian-10

USER root
COPY --from=git /workspace/pgvector /tmp/pgvector
Expand Down
Loading