feat: add support for berry build in Dockerfile

This commit is contained in:
Laisky.Cai 2025-01-15 00:52:32 +00:00
parent bdb695895f
commit 2cdc27475f

View File

@ -12,6 +12,10 @@ WORKDIR /web/air
RUN npm install
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
WORKDIR /web/berry
RUN npm install
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
FROM golang:1.23.3-bullseye AS builder2
RUN apt-get update