Update node Docker tag to v16

This commit is contained in:
Renovate Bot 2022-02-03 08:32:59 +00:00 committed by Georg Krause
parent fee31bb65d
commit 11f103a8c6
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
2 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ stages:
review_front:
interruptible: true
stage: review
image: node:12-buster
image: node:16-buster
when: manual
allow_failure: true
variables:
@ -123,7 +123,7 @@ flake8:
eslint:
interruptible: true
image: node:12-buster
image: node:16-buster
stage: lint
before_script:
- cd front
@ -187,7 +187,7 @@ test_api_3.10:
test_front:
interruptible: true
stage: test
image: node:12-buster
image: node:16-buster
before_script:
- cd front
only:
@ -241,7 +241,7 @@ build_docs:
build_front:
stage: build
image: node:12-buster
image: node:16-buster
before_script:
- curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
- chmod +x /usr/local/bin/jq

View File

@ -1,4 +1,4 @@
FROM node:12-buster
FROM node:16-buster
# needed to compile translations
RUN curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && chmod +x /usr/local/bin/jq