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
476 changes: 476 additions & 0 deletions AUTO_PLUGIN_GUIDE.md

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM python:3.11-slim
FROM python:3.13-slim

# Install system dependencies
# Install system dependencies including build tools for compiling Python packages
RUN apt-get update && apt-get install -y --no-install-recommends \
libmagic1 \
gcc \
g++ \
make \
libffi-dev \
&& rm -rf /var/lib/apt/lists/*

# Install poetry
Expand Down
Loading
Loading