postgres/Dockerfile

10 lines
206 B
Text
Raw Permalink Normal View History

2024-12-08 02:36:45 +00:00
FROM postgres:17
RUN apt-get update && apt-get install -y \
postgresql-17-postgis-3 \
postgresql-17-postgis-3-scripts \
postgresql-17-pgvector \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 5432