Private
Public Access
1
0

fix: css build
Some checks failed
Build and Push Madplaner / build (push) Failing after 11s

This commit is contained in:
2025-12-31 00:51:12 +01:00
parent 88a82f887f
commit 804bb3bf68
2 changed files with 5 additions and 3 deletions

View File

@@ -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