This commit is contained in:
史悦
2025-09-12 14:23:26 +08:00
parent da83f4ab48
commit ab1f052a60
2 changed files with 6 additions and 5 deletions

View File

@@ -101,7 +101,7 @@ flutter:
- asset: assets/fonts/NotoSansSC-Bold.ttf - asset: assets/fonts/NotoSansSC-Bold.ttf
weight: 700 weight: 700
flutter_icons: # flutter_icons:
android: "launcher_icon" # android: "launcher_icon"
ios: true # ios: true
image_path: "assets/icons/app_icon.png" # image_path: "assets/icons/app_icon.png"

View File

@@ -7,7 +7,8 @@ WORKDIR /flutter_app
# Get dependencies and build # Get dependencies and build
RUN flutter pub get RUN flutter pub get
RUN flutter build web --release --web-renderer canvaskit RUN flutter doctor -v
RUN flutter build web --release --web-renderer html --verbose
# Stage 2: Build the Java Spring Boot server # Stage 2: Build the Java Spring Boot server
FROM maven:3.9-eclipse-temurin-21 as java_builder FROM maven:3.9-eclipse-temurin-21 as java_builder