9 lines
388 B
Docker
9 lines
388 B
Docker
# 基于 chromedp/headless-shell 基础镜像
|
|
FROM chromedp/headless-shell:latest
|
|
|
|
# 安装 Noto 和 Noto CJK 字体
|
|
RUN sed -i 's@http://deb.debian.org@http://mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.list.d/debian.sources \
|
|
&& apt-get update -y \
|
|
&& apt-get install -y fonts-noto fonts-noto-cjk \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/ |