mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
12 lines
352 B
Docker
12 lines
352 B
Docker
ARG POSTGRES_VERSION=17
|
|
FROM postgres:${POSTGRES_VERSION}
|
|
|
|
ARG POSTGRES_VERSION=17
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
postgresql-${POSTGRES_VERSION}-postgis-3 \
|
|
postgresql-${POSTGRES_VERSION}-postgis-3-scripts \
|
|
postgresql-${POSTGRES_VERSION}-pgvector \
|
|
&& rm -rf /var/lib/apt/lists/*
|