fix(docker): install py3-pip for Python dependency installation

The pip3 command was not available, causing the Docker build to fail when
trying to install Python dependencies from requirements.txt. Added py3-pip
to the Alpine package installation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-10-18 19:29:42 -05:00
parent c92d7d9d89
commit 0f55909533
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ RUN turbo build --filter=@soroban/web
FROM node:18-alpine AS runner
WORKDIR /app
# Install Python, build tools for better-sqlite3, and Typst (needed at runtime)
RUN apk add --no-cache python3 py3-setuptools make g++ typst
# Install Python, pip, build tools for better-sqlite3, and Typst (needed at runtime)
RUN apk add --no-cache python3 py3-pip py3-setuptools make g++ typst
# Create non-root user
RUN addgroup --system --gid 1001 nodejs