From 804bb3bf68e494f534c703eb3744b0eba3c19521 Mon Sep 17 00:00:00 2001 From: Rasmus Date: Wed, 31 Dec 2025 00:51:12 +0100 Subject: [PATCH] fix: css build --- Dockerfile | 3 ++- static/package.json | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0717d66..2d49b89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ # --- STAGE 1: CSS Builder --- FROM node:18-alpine AS css-builder WORKDIR /app -COPY package*.json tailwind.config.js ./ +COPY package.json ./ +COPY tailwind.config.js ./ COPY ./static/src/input.css ./static/src/input.css COPY ./templates ./templates RUN npm install && npx tailwindcss -i ./static/src/input.css -o ./static/dist/css/output.css --minify diff --git a/static/package.json b/static/package.json index 13de9fe..119ada8 100644 --- a/static/package.json +++ b/static/package.json @@ -1,7 +1,8 @@ { - "name": "madplaner-css", + "name": "madplaner-ui", "version": "1.0.0", + "description": "Tailwind build for Madplaner", "devDependencies": { - "tailwindcss": "^3.4.1" + "tailwindcss": "^3.4.0" } } \ No newline at end of file