# Dockerfile for Pragmastat content generation
FROM python:3.10-slim

# Set working directory to gen
WORKDIR /workspace/gen

# Note: No Python dependencies needed, source files will be mounted via volume at runtime

# Default command
CMD ["/bin/bash"]

