fix: 修复数据库备份与恢复问题 (#85)

* fix: 修复数据库备份与恢复问题

* fix: 修复数据库备份与恢复问题
This commit is contained in:
kanzihuang
2024-01-15 20:11:28 +08:00
committed by GitHub
parent b873855b44
commit c0232c4c75
12 changed files with 53 additions and 32 deletions

View File

@@ -5,9 +5,9 @@ WORKDIR /mayfly
COPY mayfly_go_web .
RUN yarn install
RUN yarn build
RUN yarn config set registry 'https://registry.npm.taobao.org' && \
yarn install && \
yarn build
# 构建后端资源
FROM golang:1.21.5 as be-builder