Skip to content

Commit

Permalink
feat: docker image for pg 11.6
Browse files Browse the repository at this point in the history
feat: docker image for pg 11.6
  • Loading branch information
vishnu-narayanan authored Jan 21, 2025
2 parents f0671b3 + 75b3c54 commit bd18ac2
Showing 1 changed file with 4 additions and 3 deletions.
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

0 comments on commit bd18ac2

Please sign in to comment.