Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fdroid-repo
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
Container registry
Model registry
Operate
Environments
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
Show more breadcrumbs
Janne Mareike Koschinski
fdroid-repo
Commits
de783d15
Unverified
Commit
de783d15
authored
7 months ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
feat: update fdroid
parent
360903ff
No related branches found
No related tags found
No related merge requests found
Pipeline
#3025
passed
7 months ago
Stage: build
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-2
1 addition, 2 deletions
.gitignore
Dockerfile
+9
-28
9 additions, 28 deletions
Dockerfile
with
10 additions
and
30 deletions
.gitignore
+
1
−
2
View file @
de783d15
/build.sh
/.idea/
/deploy.sh
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Dockerfile
+
9
−
28
View file @
de783d15
ARG
BUILD_TOOLS=34.0.0
FROM
openjdk:8-jdk
as
builder
ARG
BUILD_TOOLS
RUN
apt-get
--quiet
update
--yes
&&
\
apt-get
--quiet
install
--yes
wget
tar
unzip lib32stdc++6 lib32z1
RUN
wget
--quiet
--output-document
=
android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
&&
\
unzip
-q
android-sdk.zip
-d
android-sdk-linux
&&
\
rm
android-sdk.zip
RUN
mkdir
android-sdk-linux/licenses
&&
\
printf
"8933bad161af4178b1185d1a37fbf41ea5269c55
\n
d56f5187479451eabf01fb78af6dfcb131a6481e
\n
24333f8a63b6825ea9c5514f83c2829b004d1fee"
>
android-sdk-linux/licenses/android-sdk-license
&&
\
printf
"84831b9409646a918e30573bab4c9c91346d8abd"
>
android-sdk-linux/licenses/android-sdk-preview-license
RUN
android-sdk-linux/tools/bin/sdkmanager
--update
>
/dev/null
RUN
android-sdk-linux/tools/bin/sdkmanager
\
"build-tools;
${
BUILD_TOOLS
}
"
\
>
/dev/null
RUN
ls
android-sdk-linux/build-tools/34.0.0/
FROM
ubuntu:latest
FROM
ubuntu:latest
ARG
BUILD_TOOLS
ENV
TZ=Etc/UTC
ENV
TZ=Etc/UTC
ENV
DEBIAN_FRONTEND=noninteractive
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
&&
apt-get
-y
install
--no-install-recommends
\
RUN
apt-get update
\
default-jdk-headless git python3-pip python3-wheel python3-setuptools python3-venv tzdata
&&
\
&&
apt-get
-y
install
--no-install-recommends
\
apt-get
install
-y
--no-install-recommends
$(
apt-cache depends fdroidserver |
grep
-Fv
-e
java
-e
jdk
-e
'<'
|
awk
'/Depends:/{print$2}'
)
&&
\
default-jdk-headless google-android-build-tools-34.0.0-installer
\
rm
-rf
/var/lib/apt/lists/
*
git tzdata
\
python3-pip python3-wheel python3-setuptools python3-venv
\
&&
apt-get
install
-y
--no-install-recommends
$(
apt-cache depends fdroidserver |
grep
-Fv
-e
java
-e
jdk
-e
'<'
|
awk
'/Depends:/{print$2}'
)
\
&&
rm
-rf
/var/lib/apt/lists/
*
\
&&
apt-get clean
RUN
git clone
--depth
1 https://gitlab.com/fdroid/fdroidserver.git
\
RUN
git clone
--depth
1 https://gitlab.com/fdroid/fdroidserver.git
\
&&
cd
fdroidserver
\
&&
cd
fdroidserver
\
&&
pip3
install
--no-binary
python-vagrant
-e
.
\
&&
pip3
install
--break-system-packages
--no-binary
python-vagrant
-e
.
\
&&
python3 setup.py compile_catalog build
\
&&
python3 setup.py compile_catalog build
\
&&
python3 setup.py
install
&&
python3 setup.py
install
COPY
--from=builder /android-sdk-linux/build-tools/${BUILD_TOOLS} /opt/android-sdk
ADD
src/update_repo.sh /
ADD
src/update_repo.sh /
ENTRYPOINT
[ "/update_repo.sh" ]
ENTRYPOINT
[ "/update_repo.sh" ]
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