Bump Node.js Docker image from 22 to 24 (#439)

* update compose.yaml

Simplify compose.yaml, remove resource limits.

* Bump Node.js Docker image from 22 to 24 (slim)
This commit is contained in:
Michael Cammarata
2026-01-06 14:01:26 -05:00
committed by GitHub
parent ca3253ac52
commit 032debed62

View File

@@ -1,7 +1,7 @@
###############################################################################
# Stage 1: Builder
###############################################################################
FROM node:22-slim AS builder
FROM node:24-slim AS builder
WORKDIR /usr/src/microsoft-rewards-script
@@ -29,7 +29,7 @@ RUN npx patchright install --with-deps --only-shell chromium \
###############################################################################
# Stage 2: Runtime
###############################################################################
FROM node:22-slim AS runtime
FROM node:24-slim AS runtime
WORKDIR /usr/src/microsoft-rewards-script