feat: ditch html render and update flutter packages

This commit is contained in:
Simon Ding
2024-12-13 11:44:42 +08:00
parent 67014cfb16
commit d2354ab33c
2 changed files with 16 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ WORKDIR /app
COPY ./ui/pubspec.yaml ./ui/pubspec.lock ./
RUN flutter pub get
COPY ./ui/ ./
RUN flutter build web --no-web-resources-cdn --web-renderer html
RUN flutter build web --no-web-resources-cdn
# 打包依赖阶段使用golang作为基础镜像
FROM golang:1.23 as builder