We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d683870 commit b339c1eCopy full SHA for b339c1e
frontend/Dockerfile
@@ -5,15 +5,14 @@ RUN apt-get install -y curl git wget unzip libgconf-2-4 gdb libstdc++6 libglu1-m
5
RUN apt-get clean
6
7
# Clone the flutter repo
8
-# Temporary fix while the cuppertino_icons package is not fixed to work with Flutter 3.13.0 (latest stable release).
9
-RUN git clone --branch 3.10.6 https://github.com/flutter/flutter.git /usr/local/flutter
+RUN git clone https://github.com/flutter/flutter.git /usr/local/flutter
10
11
# Set flutter path
12
ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:${PATH}"
13
14
# Enable flutter web
15
-# RUN flutter channel stable
16
-# RUN flutter upgrade
+RUN flutter channel stable
+RUN flutter upgrade
17
RUN flutter config --enable-web
18
19
# Run flutter doctor
0 commit comments