FIX(docker): add PostgreSQL dependencies

- Add libpq-dev for psycopg2
- Add postgresql-client package
This commit is contained in:
2025-12-23 23:26:17 +09:00
parent d7bf1be2c9
commit 10e5941cc8

View File

@@ -7,8 +7,13 @@ RUN apt-get update && apt-get install -y \
build-essential \
curl \
git \
libpq-dev \
postgresql-client \
&& rm -rf /var/lib/apt/lists/*
# pip 업그레이드
RUN pip install --no-cache-dir --upgrade pip setuptools wheel
# Python 의존성 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt