We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d308465 + 2793dc0 commit 0d503acCopy full SHA for 0d503ac
1 file changed
ontime-back/Dockerfile
@@ -1,7 +1,10 @@
1
FROM eclipse-temurin:17-jdk
2
-RUN microdnf install -y tzdata && \
+RUN apt-get update && \
3
+ apt-get install -y tzdata && \
4
ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \
- echo "Asia/Seoul" > /etc/timezone
5
+ echo "Asia/Seoul" > /etc/timezone && \
6
+ apt-get clean && \
7
+ rm -rf /var/lib/apt/lists/*
8
WORKDIR /app
9
COPY project.jar app.jar
10
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
0 commit comments