feat: add arm docker (#1236)

This commit is contained in:
Bingchang Chen
2022-10-22 11:08:29 +08:00
committed by GitHub
parent 290cc60f00
commit d0751bf2fa
2 changed files with 15 additions and 5 deletions

View File

@ -2,7 +2,7 @@ FROM node:16.13.0 AS FRONT
WORKDIR /web
COPY ./web .
RUN yarn config set registry https://registry.npmmirror.com
RUN yarn install && yarn run build
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn run build
FROM golang:1.17.5 AS BACK