fix: Update npm to latest version and fix Tailwind v4 PostCSS configuration
- Install @tailwindcss/postcss for Tailwind v4 compatibility - Update postcss.config.js to use new Tailwind PostCSS plugin - Update npm to latest version in backend Dockerfile - Fixes build failures with Next.js 16.1.6 and Tailwind CSS v4.2.0
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
FROM node:20-alpine AS base
|
FROM node:20-alpine AS base
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Install Bun
|
# Install Bun and update npm
|
||||||
RUN npm install -g bun
|
RUN npm install -g bun && npm install -g npm@latest
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
COPY package.json bun.lockb* ./
|
COPY package.json bun.lockb* ./
|
||||||
|
|||||||
20
backend/Dockerfile.fixed
Normal file
20
backend/Dockerfile.fixed
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
FROM node:20-alpine AS base
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Install Bun
|
||||||
|
RUN npm install -g bun
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
COPY package.json bun.lockb* ./
|
||||||
|
RUN bun install
|
||||||
|
|
||||||
|
# Copy source code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
ENV NODE_ENV=production
|
||||||
|
ENV PORT=3001
|
||||||
|
|
||||||
|
EXPOSE 3001
|
||||||
|
|
||||||
|
# Run directly from TypeScript source (Bun can execute TypeScript directly)
|
||||||
|
CMD ["bun", "run", "src/index.ts"]
|
||||||
@@ -31,6 +31,7 @@
|
|||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"tailwindcss": "^4.2.0",
|
"tailwindcss": "^4.2.0",
|
||||||
"postcss": "^8.5.6",
|
"postcss": "^8.5.6",
|
||||||
"autoprefixer": "^10.4.24"
|
"autoprefixer": "^10.4.24",
|
||||||
|
"@tailwindcss/postcss": "^4.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
tailwindcss: {},
|
'@tailwindcss/postcss': {},
|
||||||
autoprefixer: {},
|
autoprefixer: {},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user