Skip to content

Commit

Permalink
Merge pull request #2876 from OpenNeuroOrg/deps/node-update
Browse files Browse the repository at this point in the history
deps: Update to Node 18.17.1
  • Loading branch information
nellh authored Aug 25, 2023
2 parents a2bf802 + 45e76f0 commit 832f5dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.15.0 as dependencies
FROM node:18.17.1 as dependencies

WORKDIR /srv

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ volumes:
services:
# This dummy service provides shared configuration for all Node deps
node:
image: node:18.15.0
image: node:18.17.1
env_file: ./config.env
working_dir: /srv
command: bash -c 'yarn install && yarn tsc-watch -b --onSuccess "touch /watch/done"'
Expand Down Expand Up @@ -192,7 +192,7 @@ services:
cluster.routing.allocation.disk.watermark.flood_stage: 1gb
cluster.routing.allocation.disk.watermark.low: 10gb
cluster.routing.allocation.disk.watermark.high: 5gb
ES_JAVA_OPTS: "-Xms750m -Xmx750m"
ES_JAVA_OPTS: '-Xms750m -Xmx750m'
ports:
- '9200:9200'
- '9300:9300'
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:18.15.0-alpine
FROM node:18.17.1-alpine

WORKDIR /srv

Expand Down
2 changes: 1 addition & 1 deletion services/datalad/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY get_docker_scale.py /get_docker_scale.py
COPY ./ssh_config /root/.ssh/config
COPY tests /srv/tests
# Install node the Dockery-but-hacky-way
COPY --from=node:18.15.0-buster /usr/local/bin/node /usr/local/bin/node
COPY --from=node:18.17.1-buster /usr/local/bin/node /usr/local/bin/node

RUN apt-get update \
&& node --version \
Expand Down

0 comments on commit 832f5dc

Please sign in to comment.