Bump node version used to build frontend

This commit is contained in:
Tulir Asokan 2021-06-11 12:09:14 +03:00
parent dcd2c3b5de
commit ac2f234d4e
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ default:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
build frontend: build frontend:
image: node:lts-alpine image: node:16-alpine
stage: build frontend stage: build frontend
before_script: [] before_script: []
variables: variables:

View File

@ -1,4 +1,4 @@
FROM node:12 AS frontend-builder FROM node:16 AS frontend-builder
COPY ./maubot/management/frontend /frontend COPY ./maubot/management/frontend /frontend
RUN cd /frontend && yarn --prod && yarn build RUN cd /frontend && yarn --prod && yarn build