diff options
author | Nick Schonning <nschonni@gmail.com> | 2022-12-11 01:37:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-11 07:37:00 +0100 |
commit | 736b4283b0936134e83092f8b16d686f6478a51f (patch) | |
tree | 29d60596bad07aabddc2c59cb5c769c518c537e1 /Dockerfile | |
parent | 714e68db38b4fe115cf96fd7b9805909c4319b67 (diff) |
Update Node 16.18.1 for latest security release (#22019)
* Update Node 16.18.1 for latest security release * Increase Yarn network timeout for build error
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 69153c030..1a97965ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.4 # This needs to be bullseye-slim because the Ruby image is built on bullseye-slim -ARG NODE_VERSION="16.17.1-bullseye-slim" +ARG NODE_VERSION="16.18.1-bullseye-slim" FROM ghcr.io/moritzheiber/ruby-jemalloc:3.0.4-slim as ruby FROM node:${NODE_VERSION} as build @@ -36,7 +36,7 @@ RUN apt update && \ bundle config set --local without 'development test' && \ bundle config set silence_root_warning true && \ bundle install -j"$(nproc)" && \ - yarn install --pure-lockfile + yarn install --pure-lockfile --network-timeout 600000 FROM node:${NODE_VERSION} |