Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
quasseldroid-build-env
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Janne Mareike Koschinski
quasseldroid-build-env
Commits
895ba8ec
Verified
Commit
895ba8ec
authored
4 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Updated build file to remove docker support
parent
1972b844
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+6
-13
6 additions, 13 deletions
Dockerfile
with
6 additions
and
13 deletions
Dockerfile
+
6
−
13
View file @
895ba8ec
ARG
SDK_VERSION
ARG
SDK_VERSION
=30.0.3
FROM
k8r.eu/justjanne/android-sdk:$SDK_VERSION
RUN
apt-get
--quiet
update
--yes
&&
\
apt-get
--quiet
install
--yes
python3 python3-lxml podman
apt-get
--quiet
install
--yes
python3 python3-lxml
ENV
PATH=$PATH:$ANDROID_HOME/platform-tools/
ENV
ANDROID_HOME=$PWD/android-sdk-linux
ENV
GRADLE_OPTS="-Dorg.gradle.daemon=False"
ARG
UID=1000
ARG
GID=1000
RUN
mkdir
/build
&&
\
chown
$UID
:
$GID
/build
&&
\
groupadd
--gid
${
GID
}
build
&&
\
useradd
--uid
${
UID
}
--gid
${
GID
}
--home
/build build
WORKDIR
/build
RUN
podman system service
-t
0 tcp:localhost:8880 &
ENV
DOCKER_HOST=tcp://localhost:8880
ENV
TESTCONTAINERS_RYUK_DISABLED=true
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