Update Node.js to v19

This commit is contained in:
Renovate 2022-10-19 08:00:30 +01:00
parent 084f52358c
commit 1e8ec31176
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ stages:
- deploy - deploy
static: static:
image: node:18-slim image: node:19-slim
stage: build stage: build
cache: cache:
key: npm-$CI_COMMIT_REF_SLUG key: npm-$CI_COMMIT_REF_SLUG
@ -118,7 +118,7 @@ gunicorn_check:
- gunicorn --check-config --config etc/gunicorn.conf.py - gunicorn --check-config --config etc/gunicorn.conf.py
npm_lint: npm_lint:
image: node:18-slim image: node:19-slim
stage: test stage: test
dependencies: dependencies:
- static - static

View file

@ -1,4 +1,4 @@
FROM node:18-slim as frontend FROM node:19-slim as frontend
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci --no-audit - -progress=false --omit=dev RUN npm ci --no-audit - -progress=false --omit=dev