revert: to html renderer

This commit is contained in:
Simon Ding
2024-10-21 09:24:35 +08:00
parent a2da1e7479
commit c9928f10ce

View File

@@ -3,8 +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 --web-renderer html
# 打包依赖阶段使用golang作为基础镜像
FROM golang:1.23 as builder