* Bump Node.js to 18.20.x

* Also update CI
This commit is contained in:
Mathieu Pillard 2024-04-04 12:56:51 +02:00 коммит произвёл GitHub
Родитель da20f21621
Коммит 7f02649ff8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -14,13 +14,13 @@ references:
working_directory: ~/addons-frontend
docker:
# This is the NodeJS version we run in production.
- image: cimg/node:18.19
- image: cimg/node:18.20
defaults-next: &defaults-next
working_directory: ~/addons-frontend
docker:
# This is the next NodeJS version we will support.
- image: cimg/node:20.9
- image: cimg/node:20.12
defaults-release: &defaults-release
machine:

Просмотреть файл

@ -1,7 +1,7 @@
#
# Build
#
FROM node:18.19-slim AS builder
FROM node:18.20-slim AS builder
WORKDIR /srv/node
COPY package.json yarn.lock /srv/node/
@ -12,7 +12,7 @@ RUN yarn install --pure-lockfile
#
# Install
#
FROM node:18.19-slim
FROM node:18.20-slim
ARG app_uid=9500
ARG app_dir=/app