Skip to content

Commit

Permalink
ci: Add time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
JiwonKKang committed Dec 5, 2024
1 parent 8f15c24 commit c04cbc6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions game-service/game-application/app-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ RUN mkdir -p ${MODULE_PATH}/build/extracted && (java -Djarmode=layertools -jar $
FROM eclipse-temurin:17-jdk
VOLUME /tmp

RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
ENV TZ=Asia/Seoul

RUN apt-get update && apt-get install -y curl

ARG MODULE_PATH=game-service/game-application/app-api
Expand Down
3 changes: 3 additions & 0 deletions matching-service/matching-application/app-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ RUN mkdir -p ${MODULE_PATH}/build/extracted && (java -Djarmode=layertools -jar $
FROM eclipse-temurin:17-jdk
VOLUME /tmp

RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
ENV TZ=Asia/Seoul

RUN apt-get update && apt-get install -y curl

ARG MODULE_PATH=matching-service/matching-application/app-api
Expand Down
3 changes: 3 additions & 0 deletions quiz-service/quiz-application/app-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ RUN mkdir -p ${MODULE_PATH}/build/extracted && (java -Djarmode=layertools -jar $
FROM eclipse-temurin:17-jdk
VOLUME /tmp

RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
ENV TZ=Asia/Seoul

RUN apt-get update && apt-get install -y curl

ARG MODULE_PATH=quiz-service/quiz-application/app-api
Expand Down
3 changes: 3 additions & 0 deletions user-service/user-application/app-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ RUN mkdir -p ${MODULE_PATH}/build/extracted && (java -Djarmode=layertools -jar $
FROM eclipse-temurin:17-jdk
VOLUME /tmp

RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
ENV TZ=Asia/Seoul

RUN apt-get update && apt-get install -y curl

ARG MODULE_PATH=user-service/user-application/app-api
Expand Down

0 comments on commit c04cbc6

Please sign in to comment.