2024-09-02 10:34:02 +00:00
|
|
|
FROM postgres:15.6-bookworm
|
2024-03-25 04:28:55 +00:00
|
|
|
|
|
|
|
|
ARG DEPENDENCIES=" \
|
|
|
|
|
curl \
|
2024-03-25 07:07:14 +00:00
|
|
|
vim \
|
2024-03-25 04:28:55 +00:00
|
|
|
python3.11-mini \
|
|
|
|
|
python3.11-venv \
|
|
|
|
|
postgresql-15-pgvector"
|
|
|
|
|
|
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
|
|
|
echo "Asia/Shanghai" > /etc/timezone && \
|
|
|
|
|
apt-get update && apt-get install -y --no-install-recommends $DEPENDENCIES && \
|
|
|
|
|
apt-get clean all && \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|