diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 19ab2da5c..e12231dc1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/front/Dockerfile b/front/Dockerfile index 16a2e8264..358e298db 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-alpine as builder +FROM node:18-alpine as builder WORKDIR /app COPY package.json yarn.lock /app/ diff --git a/front/Dockerfile.dev b/front/Dockerfile.dev index e108eb0c1..f280b65ae 100644 --- a/front/Dockerfile.dev +++ b/front/Dockerfile.dev @@ -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