Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flutter-ci-container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marvin Weiler
flutter-ci-container
Commits
40c636ef
Commit
40c636ef
authored
3 months ago
by
Marvin Weiler
Browse files
Options
Downloads
Patches
Plain Diff
Init
parents
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Containerfile
+6
-0
6 additions, 0 deletions
Containerfile
README.md
+14
-0
14 additions, 0 deletions
README.md
with
20 additions
and
0 deletions
Containerfile
0 → 100644
+
6
−
0
View file @
40c636ef
FROM
ghcr.io/cirruslabs/flutter:3.29.1
MAINTAINER
Marvin flutter-ci-image@xcds.de
# Create a dummy flutter app and compile it once to force flutter to download the android sdks
# The sdk should stay in the app to speedup pipelines
RUN
mkdir
/test-app
&&
cd
/test-app
&&
flutter create my_app
&&
cd
my_app
&&
flutter build apk
&&
rm
/test-app
-rf
&&
cd
/
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
14
−
0
View file @
40c636ef
# Docker Images for [Flutter](https://flutter.dev/)
You can either use it in a ci pipeline or run locally via podman:
```
bash
podman run
--rm
-it
-v
${
PWD
}
:/build:z
--workdir
/build registry.gitlab.fachschaften.org/togir2/flutter-ci-container flutter build apk
```
The example above simply mount current working directory and runs
`flutter build apk`
## Gitlab Container Registry
https://gitlab.fachschaften.org/togir2/flutter-ci-container/container_registry
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment