Skip to content

Commit 16f1dc8

Browse files
chore(deps): update node.js to v24.6.0
1 parent 06d8c9d commit 16f1dc8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.docker-hub/print/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build stage
2-
FROM node:24.5.0 AS build-stage
2+
FROM node:24.6.0 AS build-stage
33
ARG SENTRY_AUTH_TOKEN
44
ARG SENTRY_ORG
55
ARG SENTRY_PRINT_PROJECT
@@ -22,7 +22,7 @@ COPY print .
2222
RUN npm run build
2323

2424
# production stage
25-
FROM node:24.5.0 AS production-stage
25+
FROM node:24.6.0 AS production-stage
2626
WORKDIR /app
2727

2828
COPY --from=build-stage /app/.output ./.output

.ops/ecamp3-logging/files/elasticsearch/remove-old-indexes/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
remove-old-indexes:
3-
image: node:24.5.0
3+
image: node:24.6.0
44
volumes:
55
- ./src:/src
66
command:

.ops/ecamp3-logging/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ elasticsearch:
5656
storage: ${ELASTIC_NODE_STORAGE_SIZE}
5757
removeOldIndexes:
5858
maxIndexAge: ${ELASTIC_NODE_MAX_INDEX_AGE}
59-
image: node:24.5.0
59+
image: node:24.6.0
6060

6161
kibana:
6262
name: kibana

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
frontend:
3-
image: node:24.5.0
3+
image: node:24.6.0
44
container_name: 'ecamp3-frontend'
55
ports:
66
- '9229:9229' # jest debug
@@ -79,7 +79,7 @@ services:
7979
command: varnishncsa
8080

8181
pdf:
82-
image: node:24.5.0
82+
image: node:24.6.0
8383
container_name: 'ecamp3-pdf'
8484
stdin_open: true
8585
tty: true
@@ -98,7 +98,7 @@ services:
9898
- CI=${CI}
9999

100100
print:
101-
image: node:24.5.0
101+
image: node:24.6.0
102102
container_name: 'ecamp3-print'
103103
user: ${USER_ID:-1000}
104104
volumes:
@@ -210,7 +210,7 @@ services:
210210
protocol: tcp
211211

212212
translation:
213-
image: node:24.5.0
213+
image: node:24.6.0
214214
profiles: ['translation']
215215
container_name: 'ecamp3-translation'
216216
volumes:

0 commit comments

Comments
 (0)