From 602fa0c26e4277dfe688d59c2437d4f030c382a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 04:22:41 +0200 Subject: [PATCH] build(deps): bump node from 25.8.1-alpine to 25.8.2-alpine in /webapp (#9448) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- webapp/Dockerfile | 4 ++-- webapp/Dockerfile.maintenance | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index eb3441e66..15fbcb558 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM node:25.8.1-alpine AS ui-library +FROM node:25.8.2-alpine AS ui-library RUN apk --no-cache add git python3 make g++ RUN mkdir -p /app WORKDIR /app @@ -9,7 +9,7 @@ RUN --mount=type=cache,target=/root/.npm,sharing=locked \ COPY packages/ui/. . RUN npm run build -FROM node:25.8.1-alpine AS base +FROM node:25.8.2-alpine AS base LABEL org.label-schema.name="ocelot.social:webapp" LABEL org.label-schema.description="Web Frontend of the Social Network Software ocelot.social" LABEL org.label-schema.usage="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/master/README.md" diff --git a/webapp/Dockerfile.maintenance b/webapp/Dockerfile.maintenance index b115b1aac..f8d4f9ec4 100644 --- a/webapp/Dockerfile.maintenance +++ b/webapp/Dockerfile.maintenance @@ -9,7 +9,7 @@ LABEL org.label-schema.vendor="ocelot.social Community" LABEL org.label-schema.schema-version="1.0" LABEL maintainer="devops@ocelot.social" -FROM node:25.8.1-alpine AS ui-library +FROM node:25.8.2-alpine AS ui-library RUN apk --no-cache add git python3 make g++ RUN mkdir -p /app WORKDIR /app @@ -17,7 +17,7 @@ COPY packages/ui . RUN npm ci RUN npm run build -FROM node:25.8.1-alpine AS build +FROM node:25.8.2-alpine AS build ENV NODE_ENV="production" RUN apk --no-cache add git python3 make g++ bash jq COPY --from=ui-library ./app/ /packages/ui/