19 lines
522 B
Docker
19 lines
522 B
Docker
# Dockerfile
|
|
# Build environment for hdwalletpy: Python 3.12 + build tools + venv support
|
|
# Used for: (1) Building Linux x86_64 wheels, (2) Development container
|
|
FROM python:3.12-slim
|
|
|
|
# Install build tools, headers, and venv module
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
python3-dev \
|
|
libffi-dev \
|
|
python3-venv \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set working directory for bind mounts
|
|
WORKDIR /app
|
|
|
|
# Default command (can be overridden)
|
|
CMD ["/bin/bash"]
|