From a2ee38f2a7c6fa7792c7c98bda2e9b9b99338809 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 06:59:42 +0000 Subject: [PATCH] chore(deps): Bump node from 20.17.0-alpine3.20 to 22.8.0-alpine3.20 Bumps node from 20.17.0-alpine3.20 to 22.8.0-alpine3.20. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 22e556e..d6905d2 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:20.17.0-alpine3.20 AS build +FROM node:22.8.0-alpine3.20 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:20.17.0-alpine3.20 +FROM node:22.8.0-alpine3.20 COPY --from=build --chown=nobody:nobody /app /app WORKDIR /app RUN apk upgrade --no-cache -a && \