Skip to content

Commit

Permalink
Fix: 서버 locale 한국으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
nohy6630 committed May 8, 2024
1 parent ff6d5c7 commit 8041967
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
FROM openjdk:17

# 로케일과 언어 설정을 위한 패키지 설치
RUN apt-get update && apt-get install -y locales && locale-gen ko_KR.UTF-8

# 환경 변수 설정
ENV LANG=ko_KR.UTF-8 \
LANGUAGE=ko_KR:ko \
LC_ALL=ko_KR.UTF-8

COPY build/libs/backend-0.0.1-SNAPSHOT.jar app.jar
CMD ["java", "-jar", "app.jar"]

0 comments on commit 8041967

Please sign in to comment.