Skip to content

Commit 8042140

Browse files
authored
Feature/python 313 (#15)
* fix readme * Fix tags * Add python 3.13
1 parent 5e6d4b1 commit 8042140

File tree

6 files changed

+79
-27
lines changed

6 files changed

+79
-27
lines changed

.github/workflows/docker-image.yml

+4
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ jobs:
7878
tag: "3.11"
7979
- context: "python3.12"
8080
tag: "3.12"
81+
- context: "python3.13"
82+
tag: "3.13"
8183

8284
steps:
8385
- uses: actions/checkout@v2
@@ -132,6 +134,8 @@ jobs:
132134
tag: 3.11-pillow
133135
- context: pillow/3.12
134136
tag: 3.12-pillow
137+
- context: pillow/3.13
138+
tag: 3.13-pillow
135139
- context: pillow/all
136140
tag: all-pillow
137141

Makefile

+16-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ images: build-base \
1212
build-python-3.10 \
1313
build-python-3.11 \
1414
build-python-3.12 \
15+
build-python-3.13 \
1516
build-pillow-3.8 \
1617
build-pillow-3.9 \
1718
build-pillow-3.10 \
1819
build-pillow-3.11 \
1920
build-pillow-3.12 \
21+
build-pillow-3.13 \
2022
build-ipython \
2123
build-black \
2224
build-certbot \
@@ -45,23 +47,29 @@ build-python-3.11:
4547
build-python-3.12:
4648
$(call build,python3.12,3.12:latest)
4749

50+
build-python-3.13:
51+
$(call build,python3.13,3.13:latest)
52+
4853
build-pillow-all:
49-
$(call build,pillow/all,all:pillow)
54+
$(call build,pillow/all,all-pillow)
5055

5156
build-pillow-3.8:
52-
$(call build,pillow/3.8,3.8:pillow)
57+
$(call build,pillow/3.8,3.8-pillow)
5358

5459
build-pillow-3.9:
55-
$(call build,pillow/3.9,3.9:pillow)
60+
$(call build,pillow/3.9,3.9-pillow)
5661

5762
build-pillow-3.10:
58-
$(call build,pillow/3.10,3.10:pillow)
63+
$(call build,pillow/3.10,3.10-pillow)
5964

6065
build-pillow-3.11:
61-
$(call build,pillow/3.11,3.11:pillow)
66+
$(call build,pillow/3.11,3.11-pillow)
6267

6368
build-pillow-3.12:
64-
$(call build,pillow/3.12,3.12:pillow)
69+
$(call build,pillow/3.12,3.12-pillow)
70+
71+
build-pillow-3.13:
72+
$(call build,pillow/3.13,3.13-pillow)
6573

6674
build-black:
6775
$(call build,black,app/black:latest)
@@ -90,8 +98,10 @@ publish:
9098
$(call publish,3.10)
9199
$(call publish,3.11)
92100
$(call publish,3.12)
101+
$(call publish,3.13)
93102
$(call publish,3.8-pillow)
94103
$(call publish,3.9-pillow)
95104
$(call publish,3.10-pillow)
96105
$(call publish,3.11-pillow)
97106
$(call publish,3.12-pillow)
107+
$(call publish,3.13-pillow)

README.md

+22-20
Original file line numberDiff line numberDiff line change
@@ -43,29 +43,31 @@ Image descriptions
4343

4444
The images according to their purpose and features:
4545

46-
Tag | Info | Purpose | Features
47-
------- | ---- | ------- | --------
48-
all | ![](https://flat.badgen.net/docker/size/snakepacker/python/all/amd64?label=size) | build stage | all available python versions, libpython headers and compiler
49-
all-pillow | ![](https://flat.badgen.net/docker/size/snakepacker/python/all-pillow/amd64?label=size) | build stage | all available python versions, libpython headers, graphics libraries headers and compiler
50-
[3.12](https://docs.python.org/3/whatsnew/3.12.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.12/amd64?label=size) | target stage | pure python 3.12
51-
[3.11](https://docs.python.org/3/whatsnew/3.11.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.11/amd64?label=size) | target stage | pure python 3.11
52-
[3.10](https://docs.python.org/3/whatsnew/3.10.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.10/amd64?label=size) | target stage | pure python 3.10
53-
[3.9](https://docs.python.org/3/whatsnew/3.9.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.9/amd64?label=size) | target stage | pure python 3.9
54-
[3.8](https://docs.python.org/3/whatsnew/3.8.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.8/amd64?label=size) | target stage | pure python 3.8
46+
Tag | Info | Purpose | Features
47+
------- |------------------------------------------------------------------------------------------| ------- | --------
48+
all | ![](https://flat.badgen.net/docker/size/snakepacker/python/all/amd64?label=size) | build stage | all available python versions, libpython headers and compiler
49+
all-pillow | ![](https://flat.badgen.net/docker/size/snakepacker/python/all-pillow/amd64?label=size) | build stage | all available python versions, libpython headers, graphics libraries headers and compiler
50+
[3.13](https://docs.python.org/3/whatsnew/3.13.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.13/amd64?label=size) | target stage | pure python 3.13
51+
[3.12](https://docs.python.org/3/whatsnew/3.12.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.12/amd64?label=size) | target stage | pure python 3.12
52+
[3.11](https://docs.python.org/3/whatsnew/3.11.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.11/amd64?label=size) | target stage | pure python 3.11
53+
[3.10](https://docs.python.org/3/whatsnew/3.10.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.10/amd64?label=size) | target stage | pure python 3.10
54+
[3.9](https://docs.python.org/3/whatsnew/3.9.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.9/amd64?label=size) | target stage | pure python 3.9
55+
[3.8](https://docs.python.org/3/whatsnew/3.8.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.8/amd64?label=size) | target stage | pure python 3.8
56+
[3.13-pillow](https://docs.python.org/3/whatsnew/3.13.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.13-pillow/amd64?label=size) | target stage | pure python 3.13 with graphics libraries binaries
5557
[3.12-pillow](https://docs.python.org/3/whatsnew/3.12.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.12-pillow/amd64?label=size) | target stage | pure python 3.12 with graphics libraries binaries
5658
[3.11-pillow](https://docs.python.org/3/whatsnew/3.11.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.11-pillow/amd64?label=size) | target stage | pure python 3.11 with graphics libraries binaries
5759
[3.10-pillow](https://docs.python.org/3/whatsnew/3.10.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.10-pillow/amd64?label=size) | target stage | pure python 3.10 with graphics libraries binaries
58-
[3.9-pillow](https://docs.python.org/3/whatsnew/3.9.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.9-pillow/amd64?label=size) | target stage | pure python 3.9 with graphics libraries binaries
59-
[3.8-pillow](https://docs.python.org/3/whatsnew/3.8.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.8-pillow/amd64?label=size) | target stage | pure python 3.8 with graphics libraries binaries
60-
[pylama](https://pylama.readthedocs.io/en/latest/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/pylama/amd64?label=size) | ready to use | pylama application image (useful for CI)
61-
[pylava](https://pylavadocs.readthedocs.io/en/latest/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/pylava/amd64?label=size) | ready to use | pylava application image (useful for CI)
62-
[ipython](https://jupyter.org) | ![](https://flat.badgen.net/docker/size/snakepacker/python/ipython/amd64?label=size) | ready to use | ipython application image
63-
[certbot](https://certbot.eff.org) | ![](https://flat.badgen.net/docker/size/snakepacker/python/certbot/amd64?label=size) | ready to use | certbot application image
64-
[black](https://black.readthedocs.io/en/stable/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/black/amd64?label=size) | ready to use | black application image (useful for CI)
65-
[gray](https://github.com/dizballanze/gray) | ![](https://flat.badgen.net/docker/size/snakepacker/python/gray/amd64?label=size) | ready to use | gray application image (useful for CI)
66-
[ruff](https://github.com/astral-sh/ruff) | ![](https://flat.badgen.net/docker/size/snakepacker/python/ruff/amd64?label=size) | ready to use | ruff linter image (useful for CI)
67-
[jupyterlab](https://github.com/jupyterlab/jupyterlab) | ![](https://flat.badgen.net/docker/size/snakepacker/python/jupyterlab/amd64?label=size) | ready to use | jupyterlab image
68-
base | ![](https://flat.badgen.net/docker/size/snakepacker/python/base/amd64?label=size) | | common layers
60+
[3.9-pillow](https://docs.python.org/3/whatsnew/3.9.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.9-pillow/amd64?label=size) | target stage | pure python 3.9 with graphics libraries binaries
61+
[3.8-pillow](https://docs.python.org/3/whatsnew/3.8.html) | ![](https://flat.badgen.net/docker/size/snakepacker/python/3.8-pillow/amd64?label=size) | target stage | pure python 3.8 with graphics libraries binaries
62+
[pylama](https://pylama.readthedocs.io/en/latest/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/pylama/amd64?label=size) | ready to use | pylama application image (useful for CI)
63+
[pylava](https://pylavadocs.readthedocs.io/en/latest/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/pylava/amd64?label=size) | ready to use | pylava application image (useful for CI)
64+
[ipython](https://jupyter.org) | ![](https://flat.badgen.net/docker/size/snakepacker/python/ipython/amd64?label=size) | ready to use | ipython application image
65+
[certbot](https://certbot.eff.org) | ![](https://flat.badgen.net/docker/size/snakepacker/python/certbot/amd64?label=size) | ready to use | certbot application image
66+
[black](https://black.readthedocs.io/en/stable/) | ![](https://flat.badgen.net/docker/size/snakepacker/python/black/amd64?label=size) | ready to use | black application image (useful for CI)
67+
[gray](https://github.com/dizballanze/gray) | ![](https://flat.badgen.net/docker/size/snakepacker/python/gray/amd64?label=size) | ready to use | gray application image (useful for CI)
68+
[ruff](https://github.com/astral-sh/ruff) | ![](https://flat.badgen.net/docker/size/snakepacker/python/ruff/amd64?label=size) | ready to use | ruff linter image (useful for CI)
69+
[jupyterlab](https://github.com/jupyterlab/jupyterlab) | ![](https://flat.badgen.net/docker/size/snakepacker/python/jupyterlab/amd64?label=size) | ready to use | jupyterlab image
70+
base | ![](https://flat.badgen.net/docker/size/snakepacker/python/base/amd64?label=size) | | common layers
6971

7072

7173
Concept

all/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ RUN apt-install -y python3.9 python3.9-dev python3.9-venv
2222
RUN apt-install -y python3.10 python3.10-dev python3.10-venv python3.10-distutils
2323
RUN apt-install -y python3.11 python3.11-dev python3.11-venv python3.11-distutils
2424
RUN apt-install -y python3.12 python3.12-dev python3.12-venv python3.12-distutils
25+
RUN apt-install -y python3.13 python3.13-dev python3.13-venv python3.13-nogil
2526

2627
RUN apt-install \
2728
cargo \
@@ -43,7 +44,8 @@ RUN \
4344
python3.9 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
4445
python3.10 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
4546
python3.11 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
46-
python3.12 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython"
47+
python3.12 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
48+
python3.13 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython"
4749

4850
# Upgrade preinstalled wheels
4951
RUN rm -fr \

pillow/3.13/Dockerfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
FROM ghcr.io/snakepacker/python/all as builder
2+
3+
# https://pillow.readthedocs.io/en/stable/installation.html#building-from-source
4+
RUN apt-install \
5+
libfreetype6-dev \
6+
libfribidi-dev \
7+
libgif-dev \
8+
libharfbuzz-dev \
9+
libimagequant-dev \
10+
libjpeg-dev \
11+
libjpeg8-dev \
12+
liblcms2-dev \
13+
libopenjp2-7-dev \
14+
libpng-dev \
15+
libraqm-dev \
16+
libtiff-dev \
17+
libtiff5-dev \
18+
libwebp-dev \
19+
libxcb1-dev \
20+
zlib1g-dev
21+
22+
RUN python3 -m venv /var/tmp/pillow-venv
23+
RUN /var/tmp/pillow-venv/bin/pip install --no-binary=:all: pillow
24+
RUN find-libdeps /var/tmp/pillow-venv > /usr/share/python3/pillow-runtime-libs.txt
25+
26+
############################################################################
27+
28+
FROM ghcr.io/snakepacker/python/3.13
29+
COPY --from=builder /usr/share/python3/pillow-runtime-libs.txt /usr/share/python3/pillow-runtime-libs.txt
30+
RUN xargs -ra /usr/share/python3/pillow-runtime-libs.txt apt-install

python3.13/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM ghcr.io/snakepacker/python/base
2+
3+
# Install python
4+
RUN apt-install python3.13-minimal libpython3.13-stdlib python3.13-nogil

0 commit comments

Comments
 (0)