Skip to content

Commit

Permalink
chore(deps): update node.js to v22.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BacLuc committed Oct 20, 2024
1 parent d86ef58 commit 4eb3d4e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .docker-hub/print/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:22.9.0 AS build-stage
FROM node:22.10.0 AS build-stage
ARG SENTRY_AUTH_TOKEN
ARG SENTRY_ORG
ARG SENTRY_PRINT_PROJECT
Expand All @@ -22,7 +22,7 @@ COPY print .
RUN npm run build

# production stage
FROM node:22.9.0 AS production-stage
FROM node:22.10.0 AS production-stage
WORKDIR /app

COPY --from=build-stage /app/.output ./.output
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
remove-old-indexes:
image: node:22.9.0
image: node:22.10.0
volumes:
- ./src:/src
command:
Expand Down
2 changes: 1 addition & 1 deletion .ops/ecamp3-logging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ elasticsearch:
storage: 10Gi
removeOldIndexes:
maxIndexAge: 15
image: node:22.9.0
image: node:22.10.0

kibana:
name: kibana
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
frontend:
image: node:22.9.0
image: node:22.10.0
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -69,7 +69,7 @@ services:
- VARNISH_HTTP_PORT=8080

pdf:
image: node:22.9.0
image: node:22.10.0
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -88,7 +88,7 @@ services:
- CI=${CI}

print:
image: node:22.9.0
image: node:22.10.0
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -188,7 +188,7 @@ services:
protocol: tcp

translation:
image: node:22.9.0
image: node:22.10.0
profiles: ['translation']
container_name: 'ecamp3-translation'
volumes:
Expand Down

0 comments on commit 4eb3d4e

Please sign in to comment.