Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
keyboard
LatinIME
Commits
92c0ee71
Commit
92c0ee71
authored
8 months ago
by
Aleksandras Kostarevas
Browse files
Options
Downloads
Patches
Plain Diff
Add Dockerfile
parent
54401410
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ci/Dockerfile
+29
-0
29 additions, 0 deletions
.ci/Dockerfile
with
29 additions
and
0 deletions
.ci/Dockerfile
0 → 100644
+
29
−
0
View file @
92c0ee71
FROM
gradle:8.2-jdk17
USER
root
ENV
CLI_URL="https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip" \
ANDROID_HOME="/root/Android/Sdk" \
ANDROID_SDK_ROOT="/root/Android/Sdk" \
ANDROID_VERSION=34 \
ANDROID_BUILD_TOOLS_VERSION=33.0.0
RUN
mkdir
-p
"
$ANDROID_HOME
"
.android
\
&&
cd
"
$ANDROID_HOME
"
\
&&
curl
-o
cli.zip
$CLI_URL
\
&&
unzip cli.zip
\
&&
rm
cli.zip
\
&&
mv
cmdline-tools latest
\
&&
mkdir
cmdline-tools
\
&&
mv
latest cmdline-tools
ENV
PATH="$PATH:$ANDROID_HOME/cmdline-tools/latest/bin"
RUN
yes
| sdkmanager
--licenses
RUN
sdkmanager
--update
RUN
sdkmanager
--install
"build-tools;
${
ANDROID_BUILD_TOOLS_VERSION
}
"
RUN
sdkmanager
--install
"platforms;android-
${
ANDROID_VERSION
}
"
RUN
sdkmanager
--install
"platform-tools"
RUN
sdkmanager
--install
"ndk;26.1.10909125"
RUN
apt update
&&
apt
install
-y
build-essential file apt-utils awscli
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