XWX-AI commited on
Commit
b8fedae
·
1 Parent(s): 280d48a

Update fonts to Google Noto family (CJK, Core, Emoji) for full international support

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -6,8 +6,10 @@ FROM node:20-bullseye-slim
6
  # Puppeteer requires a lot of system libraries to run Chrome in Docker
7
  RUN apt-get update && apt-get install -y \
8
  chromium \
9
- fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
 
10
  fonts-noto-color-emoji \
 
11
  --no-install-recommends \
12
  && rm -rf /var/lib/apt/lists/*
13
 
 
6
  # Puppeteer requires a lot of system libraries to run Chrome in Docker
7
  RUN apt-get update && apt-get install -y \
8
  chromium \
9
+ fonts-noto-cjk \
10
+ fonts-noto-core \
11
  fonts-noto-color-emoji \
12
+ libxss1 \
13
  --no-install-recommends \
14
  && rm -rf /var/lib/apt/lists/*
15