# ============================================================================= # QWHPI — Quebec Weekly Housing Price Index # Author : Simon-Pierre Boucher # Contact : contact@spboucher.ai # File : ops/scheduler/Dockerfile # Purpose : Container image for the weekly refresh scheduler. # ============================================================================= FROM python:3.12-slim RUN pip install --no-cache-dir polars numpy pyarrow scipy pandas pyfixest \ "psycopg[binary]" schedule WORKDIR /workspace COPY refresh.py /opt/refresh.py CMD ["python", "/opt/refresh.py"]