Update node Docker tag to v16
This commit is contained in:
parent
fee31bb65d
commit
11f103a8c6
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue