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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base Node with Alpine ----
FROM node:22.13.1-alpine3.21 AS base
FROM node:24.11.1-alpine3.21 AS base
# Set working directory in the container
WORKDIR /app
# Copy package.json and yarn.lock files to the workspace
Expand All @@ -16,7 +16,7 @@ RUN cp -R node_modules prod_node_modules
RUN yarn install --ignore-scripts --frozen-lockfile

# ---- Release ----
FROM node:22.13.1-alpine3.21 AS release
FROM node:24.11.1-alpine3.21 AS release
# Set working directory
WORKDIR /app
# Copy production node_modules
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^14.18.0 || ^16.13.0 || ^18.12.1 || ^20.11.1 || ^22.13.1"
"node": "^14.18.0 || ^16.13.0 || ^18.12.1 || ^20.11.1 || ^22.13.1 || ^24.0.0"
},
"bugs": {
"url": "https://github.com/TryGhost/gscan/issues"
Expand Down