This commit is contained in:
William Durand 2023-12-12 15:50:15 +01:00 коммит произвёл GitHub
Родитель 87a6e1d950
Коммит edcd023ffd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -14,7 +14,7 @@ references:
working_directory: ~/addons-frontend working_directory: ~/addons-frontend
docker: docker:
# This is the NodeJS version we run in production. # This is the NodeJS version we run in production.
- image: cimg/node:18.18 - image: cimg/node:18.19
defaults-next: &defaults-next defaults-next: &defaults-next
working_directory: ~/addons-frontend working_directory: ~/addons-frontend

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

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