From 1ef523d096870c5d02b1c2a07e98465c11239fb9 Mon Sep 17 00:00:00 2001 From: Matthew Knight Date: Fri, 13 Feb 2026 23:08:55 -0800 Subject: [PATCH] docker fix --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f0c4559..c3e4873 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # Stage 1: Build Tailwind CSS FROM node:22-alpine AS tailwind WORKDIR /app +COPY package.json package-lock.json* ./ +RUN npm install COPY web/static/css/input.css web/static/css/input.css COPY web/templates/ web/templates/ COPY internal/handlers/ internal/handlers/