1
0
forked from baron/baron-sso

icon 깨짐 방지

This commit is contained in:
2026-01-21 13:06:22 +09:00
parent c39857c66c
commit 801c21a907
3 changed files with 5 additions and 2 deletions

View File

@@ -1,11 +1,12 @@
# Stage 1: Build Flutter
FROM ghcr.io/cirruslabs/flutter:stable AS build
# ENV RUN_FLUTTER_AS_ROOT=true
WORKDIR /app
COPY . .
# Get dependencies and build for web
RUN flutter pub get
RUN touch .env
RUN flutter build web --release
RUN flutter build web --release --no-tree-shake-icons
# Stage 2: Serve with Nginx
FROM nginx:alpine