From ceeaa875031ba2630cba2078cf996de79daa052b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 02:21:49 +0000 Subject: [PATCH] chore(deps): Bump node from 23.1.0-alpine to 23.3.0-alpine Bumps node from 23.1.0-alpine to 23.3.0-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf2c9e3..9490ca7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors # SPDX-License-Identifier: AGPL-3.0-or-later -FROM node:23.1.0-alpine AS build +FROM node:23.3.0-alpine AS build SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG NODE_ENV=production COPY . /app @@ -14,7 +14,7 @@ RUN apk upgrade --no-cache -a && \ clean-modules --yes && \ npm cache clean --force -FROM node:23.1.0-alpine +FROM node:23.3.0-alpine COPY --from=build --chown=nobody:nobody /app /app WORKDIR /app RUN apk upgrade --no-cache -a && \