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 .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.22.1
24.14.0
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22 as build
FROM node:24 as build

ENV DEBIAN_FRONTEND=noninteractive
ENV DEBIAN_FRONTEND=dialog
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.production
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build the entire application
FROM node:22 AS app_build
FROM node:24 AS app_build

ENV DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -27,7 +27,7 @@ RUN pnpm build
RUN cp ./sites/geohub/package.json ./sites/geohub/build/package.json

# Build only geohub dependencies in node_modules
FROM node:22 AS prod_build
FROM node:24 AS prod_build

ENV NODE_ENV=production
RUN npm install pnpm -g
Expand Down
Loading