Skip to content

Commit

Permalink
Merge pull request #4917 from ecamp/renovate/node-20.x
Browse files Browse the repository at this point in the history
Update Node.js to v20.12.2
  • Loading branch information
renovate[bot] committed Apr 14, 2024
2 parents 4233cee + 7a4d545 commit d32ecb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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:20.12.1 AS build-stage
FROM node:20.12.2 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:20.12.1 AS production-stage
FROM node:20.12.2 AS production-stage
WORKDIR /app

COPY --from=build-stage /app/.output ./.output
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.9'

services:
frontend:
image: node:20.12.1
image: node:20.12.2
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -94,7 +94,7 @@ services:
- ./api/public:/srv/api/public:ro

pdf:
image: node:20.12.1
image: node:20.12.2
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -113,7 +113,7 @@ services:
- CI=${CI}

print:
image: node:20.12.1
image: node:20.12.2
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -192,7 +192,7 @@ services:
working_dir: /e2e

translation:
image: node:20.12.1
image: node:20.12.2
profiles: ['translation']
container_name: 'ecamp3-translation'
volumes:
Expand Down

0 comments on commit d32ecb6

Please sign in to comment.