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
84c3634f3d3b24aaa4107c72abc97e21a8ff7e0b to a047d9d394238999307b2b164df585c6e9368599
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
a047d9d394238999307b2b164df585c6e9368599
Select Git revision
Branches
master
Swap
Target
docker-images/devcontainer/flutter/flutter-linux
Select target project
docker-images/devcontainer/flutter/flutter-linux
1 result
84c3634f3d3b24aaa4107c72abc97e21a8ff7e0b
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add devcontainer example
· 12268083
Andri Joos
authored
4 months ago
12268083
bump flutter version to 3.24.1
· a047d9d3
Andri Joos
authored
4 months ago
a047d9d3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
devcontainer_example.json
+23
-0
23 additions, 0 deletions
devcontainer_example.json
with
25 additions
and
2 deletions
.gitlab-ci.yml
View file @
a047d9d3
...
...
@@ -9,4 +9,4 @@ build:
DOCKER_BUILDX_PLATFORMS
:
linux/amd64
TAG_SUFFIX
:
linux
IMAGE_BASENAME
:
${IMAGE_PREFIX}/devcontainer-flutter
IMAGE_NAME
:
${IMAGE_BASENAME}:3.24.
0
-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX},${IMAGE_BASENAME}:3-${TAG_SUFFIX}
IMAGE_NAME
:
${IMAGE_BASENAME}:3.24.
1
-${TAG_SUFFIX},${IMAGE_BASENAME}:3.24-${TAG_SUFFIX},${IMAGE_BASENAME}:3-${TAG_SUFFIX}
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
a047d9d3
...
...
@@ -5,7 +5,7 @@ ARG USER_GID=${USER_UID}
ARG
USERNAME="flutter"
ARG
WORKSPACE="/workdir"
COPY
--from=andrijoos/flutter:3.24.
0
/flutter /opt/flutter
COPY
--from=andrijoos/flutter:3.24.
1
/flutter /opt/flutter
ENV
PATH=${PATH}:/opt/flutter/bin
...
...
This diff is collapsed.
Click to expand it.
devcontainer_example.json
0 → 100644
View file @
a047d9d3
{
"name"
:
"Flutter Linux"
,
"image"
:
"andrijoos/flutter:3-linux"
,
"remoteUser"
:
"flutter"
,
"workspaceFolder"
:
"/workdir"
,
"workspaceMount"
:
"source=${localWorkspaceFolder},target=/workdir,type=bind,consistency=delegated"
,
"customizations"
:
{
"vscode"
:
{
"settings"
:
{
"remote.autoForwardPorts"
:
false
},
"extensions"
:
[
"dart-code.dart-code"
,
"dart-code.flutter"
,
"ms-azuretools.vscode-docker"
]
}
},
"containerEnv"
:
{
"SHELL"
:
"/bin/bash"
},
"postCreateCommand"
:
"cd ai_chat && flutter pub get"
}
This diff is collapsed.
Click to expand it.