feat: use canvas render

This commit is contained in:
Simon Ding
2024-10-21 08:59:51 +08:00
parent 038f643ce3
commit a2da1e7479

View File

@@ -3,7 +3,8 @@ 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