SPB Git forge

spb/qwhpi

Public

QHPI — Quebec Housing Price Index: quality-adjusted, hierarchically pooled housing price indexes.

2commits 1branches 0releases
4.6 MBsize
maindefault branch
20 days agolast push
Python 63.9% TypeScript 25.4% CSS 5.5% TeX 3.5% SQL 0.8% Makefile 0.5% Dockerfile 0.5%
597 B · 20 lines docker
Raw Blame History
1# =============================================================================2# QWHPI — Quebec Weekly Housing Price Index3# Author  : Simon-Pierre Boucher4# Contact : contact@spboucher.ai5# File    : web/Dockerfile6# Purpose : Container image for the QWHPI dashboard (Next.js).7# =============================================================================8FROM node:22-alpine AS build9WORKDIR /srv10COPY package.json package-lock.json* ./11RUN npm ci || npm install12COPY . .13RUN npm run build1415FROM node:22-alpine16WORKDIR /srv17COPY --from=build /srv ./18EXPOSE 300019CMD ["npm", "run", "start"]20