Update node Docker tag to v18
This commit is contained in:
parent
b31058dd09
commit
903da25bf3
|
@ -31,7 +31,7 @@ stages:
|
|||
review_front:
|
||||
interruptible: true
|
||||
stage: deploy
|
||||
image: node:16-alpine
|
||||
image: node:18-alpine
|
||||
when: manual
|
||||
allow_failure: true
|
||||
variables:
|
||||
|
@ -158,7 +158,7 @@ flake8:
|
|||
|
||||
eslint:
|
||||
interruptible: true
|
||||
image: node:16-alpine
|
||||
image: node:18-alpine
|
||||
stage: lint
|
||||
before_script:
|
||||
- cd front
|
||||
|
@ -224,7 +224,7 @@ test_api:
|
|||
#test_front:
|
||||
# interruptible: true
|
||||
# stage: test
|
||||
# image: node:16-alpine
|
||||
# image: node:18-alpine
|
||||
# before_script:
|
||||
# - cd front
|
||||
# - apk add --no-cache jq bash coreutils python3
|
||||
|
@ -284,7 +284,7 @@ build_docs:
|
|||
|
||||
build_front:
|
||||
stage: build
|
||||
image: node:16-alpine
|
||||
image: node:18-alpine
|
||||
before_script:
|
||||
- apk add --no-cache jq bash coreutils python3
|
||||
- cd front
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:16-alpine as builder
|
||||
FROM node:18-alpine as builder
|
||||
|
||||
WORKDIR /app
|
||||
COPY package.json yarn.lock /app/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:16-alpine
|
||||
FROM node:18-alpine
|
||||
|
||||
# needed to compile translations
|
||||
RUN apk add --no-cache jq bash coreutils python3
|
||||
|
|
Loading…
Reference in New Issue