From 85b6baa5cbc5ff4b02228f56c866e5db74fe5279 Mon Sep 17 00:00:00 2001 From: Neeldhara Misra Date: Mon, 22 Jun 2026 18:22:42 +0530 Subject: [PATCH] Include homepage content index in Docker build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 167ea24..b9a650b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM node:22-alpine AS build WORKDIR /app COPY package.json ./ +COPY content ./content COPY scripts ./scripts COPY webfonts ./webfonts RUN npm run build