Update node Docker tag to v18

environments/review-docs-pre-c-zs4ui8/deployments/15563
Renovate Bot 2022-11-08 22:02:27 +00:00 zatwierdzone przez Kasper Seweryn
rodzic b31058dd09
commit 903da25bf3
3 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -1,4 +1,4 @@
FROM node:16-alpine as builder
FROM node:18-alpine as builder
WORKDIR /app
COPY package.json yarn.lock /app/

Wyświetl plik

@ -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