Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flutter-base
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
docker images
flutter
flutter-base
Compare revisions
44c2fa3a1068c2c984bb424004af761948e773e2 to 9ee587e3c5873bdf1fead07ab622656f47ea51ac
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
docker-images/flutter/flutter-base
Select target project
No results found
9ee587e3c5873bdf1fead07ab622656f47ea51ac
Select Git revision
Branches
arm64
master
Swap
Target
docker-images/flutter/flutter-base
Select target project
docker-images/flutter/flutter-base
1 result
44c2fa3a1068c2c984bb424004af761948e773e2
Select Git revision
Branches
arm64
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fixup! add multi platform image
· 403e9fb3
Andri Joos
authored
4 months ago
403e9fb3
fixup! add multi platform image
· 9ee587e3
Andri Joos
authored
4 months ago
9ee587e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+10
-2
10 additions, 2 deletions
Dockerfile
with
10 additions
and
2 deletions
Dockerfile
View file @
9ee587e3
...
...
@@ -13,7 +13,7 @@ ARG FLUTTER_DIR="$DEPENDENCY_DIR/${FLUTTER_DIR}"
ARG
FLUTTER_DOWNLOAD_FILE="flutter.tar.xz"
RUN
apt update
\
&&
apt
install
-y
wget xz-utils git
curl
unzip
&&
apt
install
-y
wget xz-utils git unzip
RUN
mkdir
-p
${
FLUTTER_DIR
}
...
...
@@ -28,7 +28,15 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then \
&&
cd
${
FLUTTER_DIR
}
\
&&
git fetch origin tag
${
FLUTTER_VERSION
}
\
&&
git checkout tags/
${
FLUTTER_VERSION
}
\
&&
bash
${
FLUTTER_DIR
}
/bin/internal/update_dart_sdk.sh
;
\
&&
DART_SDK_PATH
=
"
${
FLUTTER_DIR
}
/bin/cache/dart-sdk"
\
&&
ENGINE_REALM
=
$(
cat
"
${
FLUTTER_DIR
}
/bin/internal/engine.realm"
|
tr
-d
'[:space:]'
)
\
&&
ENGINE_VERSION
=
$(
cat
"
${
FLUTTER_DIR
}
/bin/internal/engine.version"
)
\
&&
DART_ZIP_NAME
=
"dart-sdk-linux-arm64.zip"
\
&&
wget
"https://storage.googleapis.com/flutter_infra_release/flutter/
${
ENGINE_VERSION
}
/
${
DART_ZIP_NAME
}
"
-O
${
DART_ZIP_NAME
}
\
&&
unzip
-o
-q
"
${
DART_ZIP_NAME
}
"
-d
"
${
FLUTTER_DIR
}
/bin/cache"
\
&&
/usr/bin/find
"
${
DART_SDK_PATH
}
"
-type
d
-exec
chmod
755
{}
\;
\
&&
/usr/bin/find
"
${
DART_SDK_PATH
}
"
-type
f
-perm
/u+x
-exec
chmod
a+x,a+r
{}
\;
\
&&
echo
"
${
ENGINE_VERSION
}
"
>
"
${
FLUTTER_DIR
}
/bin/cache/engine-dart-sdk.stamp"
;
\
fi
...
...
This diff is collapsed.
Click to expand it.