From 0350ff4fe26a6da7599dffe1bbabcf182bb9704a Mon Sep 17 00:00:00 2001 From: SR07 Date: Tue, 27 May 2025 10:07:43 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BB=A8=ED=85=8C=EC=9D=B4=EB=84=88=20?= =?UTF-8?q?=ED=83=80=EC=9E=84=EC=A1=B4=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index 52f2acb..3b6919d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,14 @@ FROM python:3.11-slim +ENV TZ=Asia/Seoul + +RUN apt update && \ + apt install -y tzdata && \ + ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \ + echo "Asia/Seoul" > /etc/timezone && \ + pip install --no-cache-dir -r requirements.txt && \ + apt clean + WORKDIR /app COPY requirements.txt .