1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Server: Upgrade NodeJS to v24 (#13701)

Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
This commit is contained in:
Henry Heino
2025-11-15 03:17:06 -08:00
committed by GitHub
parent 0b0ffe06d4
commit d89aae5371

View File

@@ -2,7 +2,7 @@
# Build stage # Build stage
# ============================================================================= # =============================================================================
FROM node:18 AS builder FROM node:24 AS builder
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y \ && apt-get install -y \
@@ -58,7 +58,7 @@ RUN --mount=type=cache,target=/build/.yarn/cache --mount=type=cache,target=/buil
# from a smaller base image. # from a smaller base image.
# ============================================================================= # =============================================================================
FROM node:18-slim FROM node:24-slim
ARG user=joplin ARG user=joplin
RUN useradd --create-home --shell /bin/bash $user RUN useradd --create-home --shell /bin/bash $user