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 docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### STAGE 1 BUILDING.
FROM node:22-alpine3.22 AS builder
FROM node:25-alpine3.22 AS builder

# Any value inside one of the disable ARGs will be accepted.
ARG DISABLE_EXTRACT="yes"
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN rm -rf /opt/meshcentral/meshcentral/docker /opt/meshcentral/meshcentral/node

### STAGE 2 PRECOMPILE DEPS MODULE

FROM node:22-alpine3.22 AS dep-compiler
FROM node:25-alpine3.22 AS dep-compiler

RUN echo -e "----------\nINSTALLING ALPINE PACKAGES...\n----------"; \
apk add --no-cache --update \
Expand All @@ -63,7 +63,7 @@ RUN jq '.dependencies += {"modern-syslog": "1.2.0", "telegram": "2.26.22"}' pack

### STAGE 3 BUILDING.

FROM node:22-alpine3.22 AS finalizer
FROM node:25-alpine3.22 AS finalizer
#FROM alpine:3.22 AS finalizer

# copy files from previous layer
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile-debian
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### STAGE 1 BUILDING.
FROM node:22-trixie-slim AS builder
FROM node:25-trixie-slim AS builder

# Any value inside one of the disable ARGs will be accepted.
ARG DISABLE_EXTRACT="yes"
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN rm -rf /opt/meshcentral/meshcentral/docker /opt/meshcentral/meshcentral/node

### STAGE 2 PRECOMPILE DEPS MODULE

FROM node:22-trixie-slim AS dep-compiler
FROM node:25-trixie-slim AS dep-compiler

ENV NODE_ENV="production"

Expand Down Expand Up @@ -89,7 +89,7 @@ RUN case "$INCLUDE_MONGODB_TOOLS" in \

### STAGE 4 BUILDING.

FROM node:22-trixie-slim AS finalizer
FROM node:25-trixie-slim AS finalizer

# Copy files from previous layers
COPY --from=dep-compiler /opt/meshcentral/meshcentral /opt/meshcentral/meshcentral
Expand Down