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:
parent
c92d7d9d89
commit
0f55909533
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue