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 frontend/Containerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Multi-stage build for production-ready Next.js application
FROM node:22-alpine AS dependencies
FROM node:24-alpine AS dependencies
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --only=production

FROM node:22-alpine AS build
FROM node:24-alpine AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
ENV NEXT_TELEMETRY_DISABLED=1
RUN npm run build

FROM node:22-alpine AS runner
FROM node:24-alpine AS runner
WORKDIR /app

ENV NODE_ENV=production
Expand Down
16 changes: 8 additions & 8 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^22.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
Expand Down