spb/qwhpi Public
QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.
Python 63.9%
TypeScript 25.4%
CSS 5.5%
TeX 3.5%
SQL 0.8%
Makefile 0.5%
Dockerfile 0.5%
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File : ops/scheduler/Dockerfile6# Purpose : Container image for the weekly refresh scheduler.7# =============================================================================8FROM python:3.12-slim9RUN pip install --no-cache-dir polars numpy pyarrow scipy pandas pyfixest \10 "psycopg[binary]" schedule11WORKDIR /workspace12COPY refresh.py /opt/refresh.py13CMD ["python", "/opt/refresh.py"]14