mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-06-06 05:49:03 +08:00
11 lines
314 B
Docker
11 lines
314 B
Docker
FROM dart
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl git unzip xz-utils zip libglu1-mesa
|
|
|
|
RUN apt-get clean
|
|
|
|
RUN git clone https://github.com/flutter/flutter.git -b stable --depth 1 /flutter
|
|
ENV PATH="/flutter/bin:$PATH"
|
|
RUN flutter doctor && dart --disable-analytics && flutter --disable-analytics
|