leonsimon23 commited on
Commit
3d940ad
·
verified ·
1 Parent(s): 3a3505d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -18,6 +18,9 @@ ENV MPLCONFIGDIR=/tmp
18
  # 设置 Fontconfig 的缓存目录到 /tmp
19
  ENV XDG_CACHE_HOME=/tmp
20
 
 
 
 
21
  # 复制您的应用代码
22
  COPY app.py .
23
  # 确保您的示例数据文件也被复制
 
18
  # 设置 Fontconfig 的缓存目录到 /tmp
19
  ENV XDG_CACHE_HOME=/tmp
20
 
21
+ # 添加这一行以在Python解释器级别忽略特定警告
22
+ ENV PYTHONWARNINGS="ignore::FutureWarning:sklearn.utils.deprecation"
23
+
24
  # 复制您的应用代码
25
  COPY app.py .
26
  # 确保您的示例数据文件也被复制