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 && \