MaxKB/installer/Dockerfile-python-pg
2024-09-02 18:05:47 +08:00

14 lines
516 B
Plaintext

FROM postgres:15.6-bullseye
ARG DEPENDENCIES=" \
curl \
vim \
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/*