nagose commited on
Commit
c9cc447
·
verified ·
1 Parent(s): 8c63945

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -4,8 +4,11 @@ FROM node:18
4
 
5
  # 更新 apt-get 并安装字体
6
  RUN apt-get update && apt-get install -y \
7
- fonts-wqy-zenhei \ # 安装文泉驿正黑字体
8
- xfonts-wqy # 安装文泉驿点阵宋体
 
 
 
9
 
10
  # Set the working directory inside the container
11
  WORKDIR /app
 
4
 
5
  # 更新 apt-get 并安装字体
6
  RUN apt-get update && apt-get install -y \
7
+ fonts-wqy-zenhei # 安装文泉驿正黑字体
8
+
9
+ RUN apt-get install -y xfonts-wqy # 安装文泉驿点阵宋体
10
+
11
+
12
 
13
  # Set the working directory inside the container
14
  WORKDIR /app