We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 598ffba + 4c181a9 commit 9b96e64Copy full SHA for 9b96e64
1 file changed
Dockerfile
@@ -2,7 +2,7 @@
2
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
3
# SPDX-License-Identifier: AGPL-3.0-or-later
4
5
-FROM node:23.6.1-alpine AS build
+FROM node:23.11.0-alpine AS build
6
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
7
ARG NODE_ENV=production
8
COPY . /app
@@ -14,7 +14,7 @@ RUN apk upgrade --no-cache -a && \
14
clean-modules --yes && \
15
npm cache clean --force
16
17
-FROM node:23.6.1-alpine
+FROM node:23.11.0-alpine
18
COPY --from=build --chown=nobody:nobody /app /app
19
WORKDIR /app
20
RUN apk upgrade --no-cache -a && \
0 commit comments