Skip to content

Commit 011bd38

Browse files
Merge pull request #253 from DevKor-github/main
[release] main to deploy
2 parents 97de555 + 0d503ac commit 011bd38

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

ontime-back/Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
FROM eclipse-temurin:17-jdk
2-
RUN microdnf install -y tzdata && \
2+
RUN apt-get update && \
3+
apt-get install -y tzdata && \
34
ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \
4-
echo "Asia/Seoul" > /etc/timezone
5+
echo "Asia/Seoul" > /etc/timezone && \
6+
apt-get clean && \
7+
rm -rf /var/lib/apt/lists/*
58
WORKDIR /app
69
COPY project.jar app.jar
710
ENTRYPOINT ["java", "-jar", "/app/app.jar"]

0 commit comments

Comments
 (0)