From b17c3d14fb9c38f405fa033c2487958c017ad856 Mon Sep 17 00:00:00 2001 From: king Date: Sun, 24 May 2026 15:55:05 +0900 Subject: [PATCH] =?UTF-8?q?fix(docker):=20curl=20=EC=84=A4=EC=B9=98=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=E2=80=94=20healthcheck=20=EC=99=80=20?= =?UTF-8?q?=EC=BB=A8=ED=85=8C=EC=9D=B4=EB=84=88=20=EB=82=B4=20=EC=A7=84?= =?UTF-8?q?=EB=8B=A8=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e7302c..46ad375 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,11 @@ FROM python:3.10-slim WORKDIR /app -# psycopg2 런타임 라이브러리 +# psycopg2 런타임 라이브러리 + curl (healthcheck 및 디버깅용) RUN apt-get update && apt-get install -y --no-install-recommends \ libpq5 \ + curl \ + ca-certificates \ && rm -rf /var/lib/apt/lists/* # 의존성 먼저 (캐시 활용)