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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions apps/overseer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder: install pnpm via corepack, install workspace deps and build the overseer app
FROM node:20-slim AS builder
FROM node:24-slim AS builder
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /repo
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml* ./
Expand All @@ -10,7 +10,7 @@ WORKDIR /repo/apps/overseer
RUN pnpm dotenv -e build.env -- pnpm build

# Runtime: small production image running Node adapter server
FROM node:20-slim AS runtime
FROM node:24-slim AS runtime
ENV NODE_ENV=production
ENV PORT=5101

Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.16",
"@types/eslint": "^9.6.0",
"@types/node": "^22.10.0",
"@types/node": "^24.0.0",
"@types/sanitize-html": "^2.16.0",
"daisyui": "^5.0.3",
"eslint": "^9.7.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build
FROM node:20-alpine AS builder
FROM node:24-alpine AS builder

# Install pnpm globally
RUN npm install -g pnpm
Expand All @@ -23,7 +23,7 @@ WORKDIR /app/apps/worker
RUN pnpm build

# Stage 2: Run
FROM node:20-alpine
FROM node:24-alpine

RUN npm install -g pnpm

Expand Down
2 changes: 1 addition & 1 deletion apps/worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@cloudflare/workers-types": "^4.20250321.0",
"@eslint/js": "^9.18.0",
"@types/express": "^5.0.3",
"@types/node": "^20.11.0",
"@types/node": "^24.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
Expand Down
Loading