Skip to content

Commit 9954aa2

Browse files
authored
update docker container (#1670)
1 parent 13e98ec commit 9954aa2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docker/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
1+
FROM nvidia/cuda:12.6.3-devel-ubuntu24.04
22
ENV PATH="/usr/local/cuda/bin:${PATH}"
33
RUN apt update && \
44
apt install -y \
@@ -15,8 +15,8 @@ RUN curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | te
1515

1616
ENV TZ=UTC
1717
ENV DEBIAN_FRONTEND=noninteractive
18-
RUN apt update -y && apt install git postgresml-15 postgresml-dashboard -y
19-
RUN git clone --branch v0.5.0 https://github.com/pgvector/pgvector && \
18+
RUN apt update -y && apt install git postgresml-17 postgresml-dashboard -y
19+
RUN git clone --branch v0.8.0 https://github.com/pgvector/pgvector && \
2020
cd pgvector && \
2121
echo "trusted = true" >> vector.control && \
2222
make && \
@@ -25,7 +25,7 @@ echo "trusted = true" >> vector.control && \
2525
COPY entrypoint.sh /app/entrypoint.sh
2626
COPY dashboard.sh /app/dashboard.sh
2727

28-
COPY --chown=postgres:postgres local_dev.conf /etc/postgresql/15/main/conf.d/01-local_dev.conf
29-
COPY --chown=postgres:postgres pg_hba.conf /etc/postgresql/15/main/pg_hba.conf
28+
COPY --chown=postgres:postgres local_dev.conf /etc/postgresql/17/main/conf.d/01-local_dev.conf
29+
COPY --chown=postgres:postgres pg_hba.conf /etc/postgresql/17/main/pg_hba.conf
3030

3131
ENTRYPOINT ["bash", "/app/entrypoint.sh"]

0 commit comments

Comments
 (0)