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