feat: image precaches all packages
Some checks failed
/ build (push) Failing after 47h15m10s

This commit is contained in:
ange 2025-01-24 05:56:04 +00:00
parent 59aaea4a9c
commit 76d32f621e
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -25,7 +25,9 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
COPY --from=build /opt/ /opt/
ENV PATH="/opt/flutter/bin:$PATH"
RUN flutter config --android-sdk /opt/android-sdk/ \
&& yes | flutter doctor --android-licenses > /dev/null
RUN flutter config --android-sdk /opt/android-sdk/
RUN yes | flutter doctor --android-licenses > /dev/null
RUN flutter update-packages
RUN flutter precache
WORKDIR /app/
ENTRYPOINT ["flutter", "--no-version-check"]