Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile.frontend
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:20.20.0-slim
FROM node:25.9-slim

# Set working directory and ensure it is owned by the non-root node user
# Set working directory and ensure it is owned by the non-root node user
WORKDIR /app
RUN chown node:node /app

Expand All @@ -9,7 +9,7 @@ USER node

# Copy frontend dependencies
COPY --chown=node:node frontend/package*.json ./
RUN npm install
RUN npm ci

# Copy frontend source
COPY --chown=node:node frontend/ ./
Expand Down
6 changes: 3 additions & 3 deletions frontend/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ const nextConfig: NextConfig = {
async rewrites() {
return [{ source: "/mcp/:path*", destination: "/api/mcp/:path*" }];
},
// Ignore ESLint errors during build
eslint: {
ignoreDuringBuilds: true,
// Ignore TypeScript errors during build (includes ESLint)
typescript: {
ignoreBuildErrors: true,
},
// Allow cross-origin requests in development
allowedDevOrigins: getAllowedDevOrigins(),
Expand Down
Loading
Loading