From 64f9d3dfc6d92063d8fa51ff0cf098ee40a95e18 Mon Sep 17 00:00:00 2001 From: sojungpp <90022940+sojungpp@users.noreply.github.com> Date: Sat, 6 Jul 2024 19:29:18 +0900 Subject: [PATCH] =?UTF-8?q?#318=20fix:=20=EB=8F=84=EC=BB=A4=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 912a7bb0..6869c58b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM openjdk:11-jdk ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Asia/Seoul -RUN apk --no-cache add tzdata +RUN apt-get update && apt-get install -y tzdata COPY build/libs/IceButler_Server-0.0.1-SNAPSHOT.jar app.jar ENTRYPOINT ["java", "-jar", "app.jar"]