Update english.dockerfile

This commit is contained in:
ckt 2023-07-10 20:24:46 +08:00 committed by GitHub
parent 1656b9a1de
commit b617599211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ WORKDIR /build
COPY ./web/package*.json ./ COPY ./web/package*.json ./
RUN npm ci RUN npm ci
COPY --from=translator /app . COPY --from=translator /app .
RUN REACT_APP_VERSION=$(cat VERSION) npm run build RUN cd web && REACT_APP_VERSION=$(cat VERSION) npm run build
# Go build stage # Go build stage
FROM golang AS builder2 FROM golang AS builder2