Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
|
|
|
|
|
| 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
|