Skip to content

Commit 7be712f

Browse files
committedFeb 6, 2024·
fix: set locale to fix build PDF
1 parent 3b4a763 commit 7be712f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ CMD /bin/bash
123123
# pandoc ================
124124

125125
FROM ubuntu AS pandoc
126+
# MEMO: localeを日本にしないとファイルまわりで失敗する
127+
ENV LANG ja_JP.UTF-8
128+
ENV LC_ALL ja_JP.UTF-8
129+
ENV TZ Asia/Tokyo
126130
ENV DEBIAN_FRONTEND=noninteractive
127131

128132
RUN apt update && \

0 commit comments

Comments
 (0)
Please sign in to comment.