mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Upgrade Node to v22.10 (#5728)
This commit is contained in:
parent
6d6544cd44
commit
4dcc7e81c0
6 changed files with 10 additions and 10 deletions
|
|
@ -1 +1 @@
|
|||
22.9
|
||||
22.10
|
||||
|
|
|
|||
2
.nvmrc
2
.nvmrc
|
|
@ -1 +1 @@
|
|||
22.9
|
||||
22.10
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:22.8.0-slim
|
||||
FROM node:22.10.0-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y ca-certificates
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:22.8.0-slim
|
||||
FROM node:22.10.0-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y ca-certificates
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:22.8.0-slim
|
||||
FROM node:22.10.0-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y wget ca-certificates && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ networks:
|
|||
|
||||
services:
|
||||
local_cdn:
|
||||
image: node:22.8.0-alpine3.20
|
||||
image: node:22.10.0-alpine3.20
|
||||
working_dir: /app
|
||||
command: ['node', 'index.js']
|
||||
networks:
|
||||
|
|
@ -38,7 +38,7 @@ services:
|
|||
S3_BUCKET_NAME: artifacts
|
||||
|
||||
local_broker:
|
||||
image: node:22.8.0-alpine3.20
|
||||
image: node:22.10.0-alpine3.20
|
||||
working_dir: /app
|
||||
command: ['node', 'broker.js']
|
||||
networks:
|
||||
|
|
@ -78,7 +78,7 @@ services:
|
|||
SECRET: '${EXTERNAL_COMPOSITION_SECRET}'
|
||||
|
||||
external_composition:
|
||||
image: node:22.8.0-alpine3.20
|
||||
image: node:22.10.0-alpine3.20
|
||||
working_dir: /app
|
||||
command: ['node', 'example.mjs']
|
||||
networks:
|
||||
|
|
@ -268,10 +268,10 @@ services:
|
|||
|
||||
# It's not part of integration tests
|
||||
app:
|
||||
image: node:22.8.0-alpine3.20
|
||||
image: node:22.10.0-alpine3.20
|
||||
command: ['npx', 'http-server']
|
||||
|
||||
# Redpand is used for integration tests, instead of Kafka. Zookeeper is no longer needed
|
||||
zookeeper:
|
||||
image: node:22.8.0-alpine3.20
|
||||
image: node:22.10.0-alpine3.20
|
||||
command: ['npx', 'http-server']
|
||||
|
|
|
|||
Loading…
Reference in a new issue