From 2793dc0ee8df989142ec43e26d9f01c6ff5d5e4c Mon Sep 17 00:00:00 2001 From: JunbeomKoreaUniv Date: Mon, 24 Nov 2025 19:45:09 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20jdk=20=EC=A7=80=EC=9B=90=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EC=9D=B4=EB=AF=B8=EC=A7=80=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20=EB=B0=8F=20=EB=AA=85=EB=A0=B9=EC=96=B4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ontime-back/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ontime-back/Dockerfile b/ontime-back/Dockerfile index 4efcb5c..fdc2004 100644 --- a/ontime-back/Dockerfile +++ b/ontime-back/Dockerfile @@ -1,7 +1,10 @@ FROM eclipse-temurin:17-jdk -RUN microdnf install -y tzdata && \ +RUN apt-get update && \ + apt-get install -y tzdata && \ ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \ - echo "Asia/Seoul" > /etc/timezone + echo "Asia/Seoul" > /etc/timezone && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* WORKDIR /app COPY project.jar app.jar ENTRYPOINT ["java", "-jar", "/app/app.jar"] \ No newline at end of file