Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM mobiledevops/android-sdk-image:34.0.0-jdk17

ENV FLUTTER_VERSION="3.29.3"
ENV FLUTTER_VERSION="3.32.0"
ENV FLUTTER_HOME "/home/mobiledevops/.flutter-sdk"

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Prebuild docker image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PUB_CACHE "/home/mobiledevops/.pub-cache"

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / Prebuild docker image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV PATH $PATH:$FLUTTER_HOME/bin

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / Prebuild docker image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PATH $PATH:$PUB_CACHE/bin

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / Prebuild docker image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Download and extract Flutter SDK
RUN mkdir $FLUTTER_HOME \
Expand Down