chore: [docker] MNG 컨테이너에 Pretendard 폰트 설치 추가
- LibreOffice Word→PDF 변환 시 Pretendard 폰트 인식을 위해 설치 - wget으로 GitHub 릴리즈에서 OTF 폰트 9개 weight 다운로드 - fc-cache 갱신으로 시스템 폰트로 등록
This commit is contained in:
@@ -15,8 +15,14 @@ RUN apt-get update && apt-get install -y \
|
|||||||
libreoffice-writer-nogui \
|
libreoffice-writer-nogui \
|
||||||
fonts-nanum fonts-nanum-extra \
|
fonts-nanum fonts-nanum-extra \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
|
wget \
|
||||||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
||||||
&& docker-php-ext-install zip mysqli pdo pdo_mysql intl soap gd \
|
&& docker-php-ext-install zip mysqli pdo pdo_mysql intl soap gd \
|
||||||
|
# Pretendard 폰트 설치 (Word→PDF 변환 시 한글 폰트 지원)
|
||||||
|
&& mkdir -p /usr/share/fonts/truetype/pretendard \
|
||||||
|
&& wget -q "https://github.com/orioncactus/pretendard/releases/download/v1.3.9/Pretendard-1.3.9.zip" -O /tmp/pretendard.zip \
|
||||||
|
&& unzip -jo /tmp/pretendard.zip "*/Pretendard-*.otf" -d /usr/share/fonts/truetype/pretendard/ \
|
||||||
|
&& rm -f /tmp/pretendard.zip \
|
||||||
&& fc-cache -f
|
&& fc-cache -f
|
||||||
|
|
||||||
# Composer 설치
|
# Composer 설치
|
||||||
|
|||||||
Reference in New Issue
Block a user