Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flutter-linux
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
devcontainer
flutter
flutter-linux
Compare revisions
b8726960aec5eaedb32b6e0ab3c01bea7a55a273 to f78d696391ab2b59c9bbbcdeb3c755b1701c741c
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/devcontainer/flutter/flutter-linux
Select target project
No results found
f78d696391ab2b59c9bbbcdeb3c755b1701c741c
Select Git revision
Swap
Target
docker-images/devcontainer/flutter/flutter-linux
Select target project
docker-images/devcontainer/flutter/flutter-linux
1 result
b8726960aec5eaedb32b6e0ab3c01bea7a55a273
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
make image multi version capable
· 4669d2b5
Andri Joos
authored
3 months ago
4669d2b5
fixup! make image multi version capable
· 07e0c3ed
Andri Joos
authored
3 months ago
07e0c3ed
add 3.27.0 version
· 141b9d9c
Andri Joos
authored
3 months ago
141b9d9c
add 3.27.1 version
· f78d6963
Andri Joos
authored
3 months ago
f78d6963
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+32
-7
32 additions, 7 deletions
.gitlab-ci.yml
.vscode/tasks.json
+22
-5
22 additions, 5 deletions
.vscode/tasks.json
Dockerfile
+12
-2
12 additions, 2 deletions
Dockerfile
with
66 additions
and
14 deletions
.gitlab-ci.yml
View file @
f78d6963
include
:
-
project
:
docker-images/templates
ref
:
master
file
:
d
evcontainer_images
.gitlab-ci.yml
file
:
d
ocker_hub
.gitlab-ci.yml
build
:
extends
:
.build_image_job_template
variables
:
TAG_SUFFIX
:
linux
IMAGE_BASENAME
:
${IMAGE_PREFIX}/devcontainer-flutter
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
.build_flutter_linux
:
variables
:
BUILD_ARGS
:
FLUTTER_VERSION=${VERSION}
"
3.27.1"
:
extends
:
-
.build_flutter_linux
-
.build_image_job_template
variables
:
VERSION
:
3.27.1
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX},${IMAGE_BASENAME}:3.27-${TAG_SUFFIX},${IMAGE_BASENAME}:3-${TAG_SUFFIX}
"
3.27.0"
:
extends
:
-
.build_flutter_linux
-
.build_image_job_template
variables
:
VERSION
:
3.27.0
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX}
"
3.24.5"
:
extends
:
-
.build_flutter_linux
-
.build_image_job_template
variables
:
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
TAG_SUFFIX
:
linux
IMAGE_BASENAME
:
${IMAGE_PREFIX}/devcontainer-flutter
IMAGE_NAME
:
${IMAGE_BASENAME}:3.24.5-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX},${IMAGE_BASENAME}:3-${TAG_SUFFIX}
VERSION
:
3.24.5
IMAGE_NAME
:
${IMAGE_BASENAME}:${VERSION}-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX}
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
View file @
f78d6963
...
...
@@ -4,12 +4,29 @@
"version"
:
"2.0.0"
,
"tasks"
:
[
{
"label"
:
"
docker
build"
,
"label"
:
"
buildx
build"
,
"command"
:
"docker"
,
"args"
:
[
"buildx"
,
"build"
,
"."
]
}
]
"--platform"
,
"linux/amd64"
,
"--build-arg"
,
"FLUTTER_VERSION=${input:flutterVersion}"
,
"."
,
],
},
],
"inputs"
:
[
{
"id"
:
"flutterVersion"
,
"type"
:
"pickString"
,
"description"
:
"Choose flutter version"
,
"options"
:
[
"3.27.1"
,
"3.27.0"
,
"3.24.5"
,
],
},
],
}
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
f78d6963
FROM
andrijoos/flutter:3.24.5-linux
ARG
FLUTTER_VERSION="3.24.5"
FROM
andrijoos/flutter:${FLUTTER_VERSION}-linux
ARG
USERNAME="ubuntu"
ARG
WORKSPACE="/workdir"
...
...
@@ -12,7 +14,15 @@ USER ${USERNAME}
WORKDIR
${WORKSPACE}
RUN
dart
--disable-analytics
\
&&
flutter config
--no-analytics
\
&&
flutter config
\
--no-analytics
\
--no-enable-web
\
--no-enable-macos-desktop
\
--no-enable-windows-desktop
\
--no-enable-ios
\
--no-enable-fuchsia
\
--no-enable-android
\
--enable-linux-desktop
\
&&
flutter precache
--universal
--linux
# Build demo project/pipeline
...
...
This diff is collapsed.
Click to expand it.