add Makefile Dockerfile README.md

This commit is contained in:
2026-01-07 21:03:00 +08:00
parent 129b09fcd9
commit a9af9d33af
3 changed files with 230 additions and 31 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
# Dockerfile
# Base build environment for hdwalletpy: Python 3.11 + build tools + venv support
FROM python:3.11-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