Update english.dockerfile

This commit is contained in:
ckt
2023-07-10 20:24:46 +08:00
committed by GitHub
parent 1656b9a1de
commit b617599211

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