Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:20.12.2-bullseye as dependencies
FROM docker.io/library/node:22.20-bullseye as dependencies

WORKDIR /srv

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2.3"
services:
# This dummy service provides shared configuration for all Node deps
node:
image: docker.io/library/node:20.12.2-bullseye
image: docker.io/library/node:22.20-bullseye
env_file: ./config.env
working_dir: /srv
command: bash -c 'yarn install && yarn pnpify tsc-watch -b --onSuccess "touch /watch/done"'
Expand Down
2 changes: 1 addition & 1 deletion packages/openneuro-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM openneuro/node AS build
WORKDIR /srv/packages/openneuro-server
RUN yarn build

FROM node:20.12.2-alpine
FROM node:22.20-alpine

WORKDIR /srv

Expand Down
Loading