FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-for-android/Dockerfile at develop · estasney/python-for-android · GitHub
estasney
/
python-for-android
Public
forked from
kivy/python-for-android
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-for-android
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
111 lines (98 loc) · 3.19 KB
Breadcrumbs
python-for-android
/
Dockerfile
Copy path
File metadata and controls
111 lines (98 loc) · 3.19 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#
Dockerfile with:
#
- Android build environment
#
- python-for-android dependencies
#
#
Build with:
#
docker build --tag=p4a --file Dockerfile .
#
#
Run with:
#
docker run -it --rm p4a /bin/sh -c '. venv/bin/activate && p4a apk --help'
#
#
Or for interactive shell:
#
docker run -it --rm p4a
#
#
Note:
#
Use 'docker run' without '--rm' flag for keeping the container and use
#
'docker commit <container hash> <new image>' to extend the original image
#
If platform is not specified, by default the target platform of the build request is used.
#
This is not what we want, as Google doesn't provide a linux/arm64 compatible NDK.
#
See: https://docs.docker.com/engine/reference/builder/#from
FROM
--platform=linux/amd64 ubuntu:22.04
#
configure locale
RUN
apt -y update -qq > /dev/null \
&& DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
locales && \
locale-gen en_US.UTF-8
ENV
LANG=
"en_US.UTF-8"
\
LANGUAGE=
"en_US.UTF-8"
\
LC_ALL=
"en_US.UTF-8"
RUN
apt -y update -qq > /dev/null \
&& DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
ca-certificates \
curl \
&& apt -y autoremove \
&& apt -y clean \
&& rm -rf /var/lib/apt/lists/*
#
retry helper script, refs:
#
https://github.com/kivy/python-for-android/issues/1306
ENV
RETRY=
"retry -t 3 --"
RUN
curl https://raw.githubusercontent.com/kadwanev/retry/1.0.1/retry \
--output /usr/local/bin/retry && chmod +x /usr/local/bin/retry
ENV
USER=
"user"
ENV
HOME_DIR=
"/home/${USER}"
ENV
WORK_DIR=
"${HOME_DIR}/app"
\
PATH=
"${HOME_DIR}/.local/bin:${PATH}"
\
ANDROID_HOME=
"${HOME_DIR}/.android"
\
JAVA_HOME=
"/usr/lib/jvm/java-17-openjdk-amd64"
#
install system dependencies
RUN
${RETRY} apt -y update -qq > /dev/null \
&& ${RETRY} DEBIAN_FRONTEND=noninteractive apt install -qq --yes --no-install-recommends \
ant \
autoconf \
automake \
autopoint \
ccache \
cmake \
g++ \
gcc \
git \
lbzip2 \
libffi-dev \
libltdl-dev \
libtool \
libssl-dev \
make \
openjdk-17-jdk \
patch \
patchelf \
pkg-config \
python3 \
python3-dev \
python3-pip \
python3-venv \
sudo \
unzip \
wget \
zip \
&& apt -y autoremove \
&& apt -y clean \
&& rm -rf /var/lib/apt/lists/*
#
prepare non root env
RUN
useradd --create-home --shell /bin/bash ${USER}
#
with sudo access and no password
RUN
usermod -append --groups sudo ${USER}
RUN
echo
"%sudo ALL=(ALL) NOPASSWD: ALL"
>> /etc/sudoers
WORKDIR
${WORK_DIR}
RUN
mkdir ${ANDROID_HOME} && chown --recursive ${USER} ${HOME_DIR} ${ANDROID_HOME}
USER
${USER}
#
Download and install android's NDK/SDK
COPY
--chown=user:user ci/makefiles/android.mk /tmp/android.mk
RUN
make --file /tmp/android.mk \
&& sudo rm /tmp/android.mk
#
install python-for-android from current branch
COPY
--chown=user:user Makefile README.md setup.py pythonforandroid/__init__.py ${WORK_DIR}/
RUN
mkdir pythonforandroid \
&& mv __init__.py pythonforandroid/ \
&& make virtualenv \
&& rm -rf ~/.cache/
COPY
--chown=user:user . ${WORK_DIR}
Back
|
FazBrowse Home
|
New Git URL