Add some info and attribution

This commit is contained in:
Jack Kingsman
2026-03-01 18:46:42 -08:00
parent 0bde67d66c
commit 7c37133856
8 changed files with 145 additions and 4 deletions
+3 -1
View File
@@ -1,13 +1,15 @@
# Stage 1: Build frontend
FROM node:20-slim AS frontend-builder
ARG COMMIT_HASH=unknown
WORKDIR /build
COPY frontend/package*.json ./
RUN npm ci
COPY frontend/ ./
RUN npm run build
RUN VITE_COMMIT_HASH=${COMMIT_HASH} npm run build
# Stage 2: Python runtime