Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ RUN apt-get update && apt-get install -y --fix-missing \
dbus-x11 \
fonts-wqy-zenhei \
fonts-wqy-microhei \
poppler-utils \
libreoffice \
Comment on lines +44 to +45
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean

Expand Down Expand Up @@ -84,7 +86,7 @@ COPY pyproject.toml setup.py README.md ./
COPY src ./src
# Inject console dist from build stage (repo does not commit dist).
COPY --from=console-builder /app/console/dist/ ./src/copaw/console/
RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir '.[full]'

# Init working dir with default config.json and HEARTBEAT.md (build time).
RUN copaw init --defaults --accept-security
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ dependencies = [
"paho-mqtt>=2.0.0",
"wecom-aibot-sdk @ https://agentscope.oss-cn-zhangjiakou.aliyuncs.com/pre_whl/wecom_aibot_sdk-1.0.0-py3-none-any.whl",
"matrix-nio>=0.24.0",
"defusedxml>=0.7.1",
"lxml>=5.0.0",
"openpyxl>=3.1.0",
"pdf2image>=1.16.0",
"pdfplumber>=0.10.0",
"pypdf>=4.0.0",
"python-frontmatter>=1.1.0",
"PyYAML>=6.0.0",
"google-genai>=1.67.0",
"tzdata>=2024.1",
]
Expand Down
Loading