Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -7,7 +7,6 @@ WORKDIR /app
|
|
| 7 |
|
| 8 |
# 复制你的 R 脚本和数据文件到容器中
|
| 9 |
COPY app.R .
|
| 10 |
-
# 注意: 这里原来是 'COPY COPY gmqrkl.xlsx .', 修正为 'COPY gmqrkl.xlsx .'
|
| 11 |
COPY gmqrkl.xlsx .
|
| 12 |
|
| 13 |
# 确保系统包更新和安装必要的开发工具(对于 R 包编译可能需要)
|
|
@@ -25,8 +24,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 25 |
libopenblas-dev \
|
| 26 |
liblapack-dev \
|
| 27 |
pandoc \
|
| 28 |
-
pandoc-citeproc \
|
| 29 |
pkg-config \
|
|
|
|
| 30 |
python3 \
|
| 31 |
python3-pip \
|
| 32 |
python3-dev \
|
|
|
|
| 7 |
|
| 8 |
# 复制你的 R 脚本和数据文件到容器中
|
| 9 |
COPY app.R .
|
|
|
|
| 10 |
COPY gmqrkl.xlsx .
|
| 11 |
|
| 12 |
# 确保系统包更新和安装必要的开发工具(对于 R 包编译可能需要)
|
|
|
|
| 24 |
libopenblas-dev \
|
| 25 |
liblapack-dev \
|
| 26 |
pandoc \
|
|
|
|
| 27 |
pkg-config \
|
| 28 |
+
# 移除了 'pandoc-citeproc',因为它通常已包含在 pandoc 中或不再单独提供。
|
| 29 |
python3 \
|
| 30 |
python3-pip \
|
| 31 |
python3-dev \
|