We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8d915e commit 83cd907Copy full SHA for 83cd907
sdk/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ghcr.io/cirruslabs/android-sdk:34
+FROM ghcr.io/cirruslabs/android-sdk:35
2
3
LABEL org.opencontainers.image.source=https://github.com/cirruslabs/docker-images-flutter
4
USER root
@@ -13,6 +13,11 @@ ENV PATH ${PATH}:${FLUTTER_HOME}/bin:${FLUTTER_HOME}/bin/cache/dart-sdk/bin
13
14
RUN git clone --depth 1 --branch ${FLUTTER_VERSION} https://github.com/flutter/flutter.git ${FLUTTER_HOME}
15
16
+# Temporary workaround for https://github.com/flutter/flutter/issues/163308#issuecomment-2676366371
17
+# It will be fixed in Flutter 3.29.1
18
+# Removing this triggers fetching the correct Flutter engine version
19
+RUN cd ${FLUTTER_HOME} && rm engine/src/.gn
20
+
21
RUN yes | flutter doctor --android-licenses \
22
&& flutter doctor \
23
&& chown -R root:root ${FLUTTER_HOME}
0 commit comments