FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir psycopg[binary]
COPY generate.py .
CMD ["python3", "generate.py"]
