forked from docker-library/python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile-linux.template
290 lines (279 loc) · 8.29 KB
/
Dockerfile-linux.template
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
{{
def is_alpine:
env.variant | startswith("alpine")
;
def is_slim:
env.variant | startswith("slim-")
;
def rcVersion:
env.version | rtrimstr("-rc")
-}}
{{ if is_alpine then ( -}}
FROM alpine:{{ env.variant | ltrimstr("alpine") }}
{{ ) elif is_slim then ( -}}
FROM debian:{{ env.variant | ltrimstr("slim-") }}-slim
{{ ) else ( -}}
FROM buildpack-deps:{{ env.variant }}
{{ ) end -}}
# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
{{ if rcVersion | IN("3.9", "3.10", "3.11", "3.12") then ( -}}
{{ # only set LANG on versions less than 3.13 -}}
# cannot remove LANG even though https://bugs.python.org/issue19846 is fixed
# last attempted removal of LANG broke many users:
# https://github.com/docker-library/python/pull/570
ENV LANG C.UTF-8
{{ ) else "" end -}}
# runtime dependencies
{{ if is_alpine then ( -}}
RUN set -eux; \
apk add --no-cache \
ca-certificates \
tzdata \
;
{{ ) else ( -}}
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
{{ if is_slim then ( -}}
ca-certificates \
netbase \
tzdata \
{{ ) else ( -}}
libbluetooth-dev \
tk-dev \
uuid-dev \
{{ ) end -}}
; \
rm -rf /var/lib/apt/lists/*
{{ ) end -}}
{{
def should_pgp:
# https://github.com/docker-library/python/issues/977
# https://peps.python.org/pep-0761/
# https://discuss.python.org/t/pep-761-deprecating-pgp-signatures-for-cpython-artifacts/67180
rcVersion | IN("3.9", "3.10", "3.11", "3.12", "3.13")
-}}
{{ if should_pgp then ( -}}
ENV GPG_KEY {{
{
# gpg: key B26995E310250568: public key "\xc5\x81ukasz Langa (GPG langa.pl) <lukasz@langa.pl>" imported
"3.9": "E3FF2839C048B25C084DEBE9B26995E310250568",
# https://peps.python.org/pep-0596/#release-manager-and-crew
# gpg: key 64E628F8D684696D: public key "Pablo Galindo Salgado <pablogsal@gmail.com>" imported
"3.10": "A035C8C19219BA821ECEA86B64E628F8D684696D",
# https://peps.python.org/pep-0619/#release-manager-and-crew
# gpg: key 64E628F8D684696D: public key "Pablo Galindo Salgado <pablogsal@gmail.com>" imported
"3.11": "A035C8C19219BA821ECEA86B64E628F8D684696D",
# https://peps.python.org/pep-0664/#release-manager-and-crew
# gpg: key A821E680E5FA6305: public key "Thomas Wouters <thomas@python.org>" imported
"3.12": "7169605F62C751356D054A26A821E680E5FA6305",
# https://peps.python.org/pep-0693/#release-manager-and-crew
# gpg: key A821E680E5FA6305: public key "Thomas Wouters <thomas@python.org>" imported
"3.13": "7169605F62C751356D054A26A821E680E5FA6305",
# https://peps.python.org/pep-0719/#release-manager-and-crew
}[rcVersion]
}}
{{ ) else "" end -}}
ENV PYTHON_VERSION {{ .version }}
{{ if .checksums.source.sha256 then ( -}}
ENV PYTHON_SHA256 {{ .checksums.source.sha256 }}
{{ ) else "" end -}}
RUN set -eux; \
\
{{ if is_alpine then ( -}}
apk add --no-cache --virtual .build-deps \
gnupg \
tar \
xz \
\
bluez-dev \
bzip2-dev \
dpkg-dev dpkg \
expat-dev \
findutils \
gcc \
gdbm-dev \
libc-dev \
libffi-dev \
libnsl-dev \
libtirpc-dev \
linux-headers \
make \
ncurses-dev \
openssl-dev \
pax-utils \
readline-dev \
sqlite-dev \
tcl-dev \
tk \
tk-dev \
util-linux-dev \
xz-dev \
zlib-dev \
; \
\
{{ ) elif is_slim then ( -}}
savedAptMark="$(apt-mark showmanual)"; \
apt-get update; \
apt-get install -y --no-install-recommends \
dpkg-dev \
gcc \
gnupg \
libbluetooth-dev \
libbz2-dev \
libc6-dev \
libdb-dev \
libexpat1-dev \
libffi-dev \
libgdbm-dev \
liblzma-dev \
libncursesw5-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
make \
tk-dev \
uuid-dev \
wget \
xz-utils \
zlib1g-dev \
; \
\
{{ ) else "" end -}}
wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; \
{{ if .checksums.source.sha256 then ( -}}
echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; \
{{ ) else "" end -}}
{{ if should_pgp then ( -}}
wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; \
GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; \
gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; \
gpg --batch --verify python.tar.xz.asc python.tar.xz; \
gpgconf --kill all; \
rm -rf "$GNUPGHOME" python.tar.xz.asc; \
{{ ) else "" end -}}
mkdir -p /usr/src/python; \
tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \
rm python.tar.xz; \
\
cd /usr/src/python; \
gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; \
./configure \
--build="$gnuArch" \
--enable-loadable-sqlite-extensions \
{{
# skip optimizations on alpine on riscv64 (except python 3.9)
# only 3.9 completes building on riscv64 with optimizations, 3.10-3.13 all hit the 3 hour limit
if (is_alpine | not) or rcVersion == "3.9" then (
-}}
--enable-optimizations \
{{ ) else ( -}}
$(test "$gnuArch" != 'riscv64-linux-musl' && echo '--enable-optimizations') \
{{ ) end -}}
--enable-option-checking=fatal \
--enable-shared \
{{
# <3.10 does not have -fno-semantic-interposition enabled and --with-lto does nothing for performance
if rcVersion == "3.9" then "" else (
-}}
--with-lto \
{{ ) end -}}
--with-system-expat \
--with-ensurepip \
; \
nproc="$(nproc)"; \
{{ if is_alpine then ( -}}
# set thread stack size to 1MB so we don't segfault before we hit sys.getrecursionlimit()
# https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; \
{{ ) else ( -}}
EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; \
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; \
{{ ) end -}}
{{ if is_slim or is_alpine then ( -}}
LDFLAGS="${LDFLAGS:--Wl},--strip-all"; \
{{ ) else "" end -}}
make -j "$nproc" \
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
"LDFLAGS=${LDFLAGS:-}" \
"PROFILE_TASK=${PROFILE_TASK:-}" \
; \
# https://github.com/docker-library/python/issues/784
# prevent accidental usage of a system installed libpython of the same version
rm python; \
make -j "$nproc" \
"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" \
"LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" \
"PROFILE_TASK=${PROFILE_TASK:-}" \
python \
; \
make install; \
{{ if is_alpine or is_slim then "" else ( -}}
\
# enable GDB to load debugging data: https://github.com/docker-library/python/pull/701
bin="$(readlink -ve /usr/local/bin/python3)"; \
dir="$(dirname "$bin")"; \
mkdir -p "/usr/share/gdb/auto-load/$dir"; \
cp -vL Tools/gdb/libpython.py "/usr/share/gdb/auto-load/$bin-gdb.py"; \
{{ ) end -}}
\
cd /; \
rm -rf /usr/src/python; \
\
find /usr/local -depth \
\( \
\( -type d -a \( -name test -o -name tests -o -name idle_test \) \) \
-o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \
\) -exec rm -rf '{}' + \
; \
\
{{ if is_alpine then ( -}}
find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
| tr ',' '\n' \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
| xargs -rt apk add --no-network --virtual .python-rundeps \
; \
apk del --no-network .build-deps; \
{{ ) else ( -}}
ldconfig; \
{{ if is_slim then ( -}}
\
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark; \
find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' \
| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' \
| sort -u \
| xargs -r dpkg-query --search \
| cut -d: -f1 \
| sort -u \
| xargs -r apt-mark manual \
; \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
rm -rf /var/lib/apt/lists/*; \
{{ ) else "" end -}}
{{ ) end -}}
\
export PYTHONDONTWRITEBYTECODE=1; \
python3 --version; \
{{ if .setuptools then ( -}}
\
pip3 install \
--disable-pip-version-check \
--no-cache-dir \
--no-compile \
{{ "setuptools==\( .setuptools.version )" | @sh }} \
wheel \
; \
{{ ) else "" end -}}
pip3 --version
# make some useful symlinks that are expected to exist ("/usr/local/bin/python" and friends)
RUN set -eux; \
for src in idle3 pip3 pydoc3 python3 python3-config; do \
dst="$(echo "$src" | tr -d 3)"; \
[ -s "/usr/local/bin/$src" ]; \
[ ! -e "/usr/local/bin/$dst" ]; \
ln -svT "$src" "/usr/local/bin/$dst"; \
done
CMD ["python3"]