From 99bf691ecbec00043dd232aad37f0383d4203c5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 04:14:15 +0100 Subject: [PATCH] build(deps): bump node from 25.5.0-alpine to 25.6.0-alpine in /webapp (#9164) 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 d0eda39f8..76678b18f 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -1,4 +1,4 @@ -FROM node:25.5.0-alpine AS styleguide +FROM node:25.6.0-alpine AS styleguide RUN apk --no-cache add git python3 make g++ RUN mkdir -p /app WORKDIR /app @@ -6,7 +6,7 @@ COPY styleguide . RUN yarn install --production=false --frozen-lockfile --non-interactive RUN yarn run build:lib -FROM node:25.5.0-alpine AS base +FROM node:25.6.0-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 39df3bf79..c57d55073 100644 --- a/webapp/Dockerfile.maintenance +++ b/webapp/Dockerfile.maintenance @@ -8,7 +8,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.5.0-alpine AS styleguide +FROM node:25.6.0-alpine AS styleguide RUN apk --no-cache add git python3 make g++ RUN mkdir -p /app WORKDIR /app @@ -16,7 +16,7 @@ COPY styleguide . RUN yarn install --production=false --frozen-lockfile --non-interactive RUN yarn run build:lib -FROM node:25.5.0-alpine AS build +FROM node:25.6.0-alpine AS build ENV NODE_ENV="production" RUN apk --no-cache add git python3 make g++ bash jq COPY --from=styleguide ./app/ /styleguide/