File tree Expand file tree Collapse file tree 9 files changed +9
-57
lines changed
Expand file tree Collapse file tree 9 files changed +9
-57
lines changed Original file line number Diff line number Diff line change 6666 image :
6767 - context : " all"
6868 tag : " all"
69- - context : " python3.8"
70- tag : " 3.8"
7169 - context : " python3.9"
7270 tag : " 3.9"
7371 - context : " python3.10"
@@ -121,8 +119,6 @@ jobs:
121119
122120 matrix :
123121 image :
124- - context : pillow/3.8
125- tag : 3.8-pillow
126122 - context : pillow/3.9
127123 tag : 3.9-pillow
128124 - context : pillow/3.10
Original file line number Diff line number Diff line change 77images : build-base \
88 build-all \
99 build-pillow-all \
10- build-python-3.8 \
1110 build-python-3.9 \
1211 build-python-3.10 \
1312 build-python-3.11 \
1413 build-python-3.12 \
1514 build-python-3.13 \
16- build-pillow-3.8 \
1715 build-pillow-3.9 \
1816 build-pillow-3.10 \
1917 build-pillow-3.11 \
@@ -32,9 +30,6 @@ build-base:
3230build-all : build-base
3331 $(call build,all,all:latest)
3432
35- build-python-3.8 :
36- $(call build,python3.8,3.8:latest)
37-
3833build-python-3.9 :
3934 $(call build,python3.9,3.9:latest)
4035
@@ -53,9 +48,6 @@ build-python-3.13:
5348build-pillow-all :
5449 $(call build,pillow/all,all-pillow)
5550
56- build-pillow-3.8 :
57- $(call build,pillow/3.8,3.8-pillow)
58-
5951build-pillow-3.9 :
6052 $(call build,pillow/3.9,3.9-pillow)
6153
Original file line number Diff line number Diff line change @@ -16,11 +16,10 @@ RUN apt-install \
1616 python3-virtualenv \
1717 python-is-python3
1818
19- RUN apt-install -y python3.8 python3.8-dev python3.8-venv
2019RUN apt-install -y python3.9 python3.9-dev python3.9-venv
21- RUN apt-install -y python3.10 python3.10-dev python3.10-venv python3.10-distutils
22- RUN apt-install -y python3.11 python3.11-dev python3.11-venv python3.11-distutils
23- RUN apt-install -y python3.12 python3.12-dev python3.12-venv python3.12-distutils
20+ RUN apt-install -y python3.10 python3.10-dev python3.10-venv
21+ RUN apt-install -y python3.11 python3.11-dev python3.11-venv
22+ RUN apt-install -y python3.12 python3.12-dev python3.12-venv
2423RUN apt-install -y python3.13 python3.13-dev python3.13-venv python3.13-nogil
2524
2625RUN apt-install \
@@ -38,7 +37,6 @@ RUN apt-install \
3837RUN ln -snf /dev/shm /root/.cargo
3938
4039RUN \
41- python3.8 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
4240 python3.9 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
4341 python3.10 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
4442 python3.11 /usr/share/python/get-pip.py "pip == 24.0" "setuptools < 60" "wheel == 0.37.0" "cython" && \
Original file line number Diff line number Diff line change 11FROM ubuntu:jammy
22
3- ENV DEBIAN_FRONTEND noninteractive
4- ENV TZ Etc/UTC
3+ ENV DEBIAN_FRONTEND= noninteractive
4+ ENV TZ= Etc/UTC
55
6- ENV LANG en_US.UTF-8
6+ ENV LANG= en_US.UTF-8
77
88COPY sources.list /etc/apt/sources.list
99COPY apt.conf /etc/apt/apt.conf.d/snakepacker
Original file line number Diff line number Diff line change @@ -27,4 +27,4 @@ RUN find-libdeps /var/tmp/pillow-venv > /usr/share/python3/pillow-runtime-libs.t
2727
2828FROM ghcr.io/snakepacker/python/3.12
2929COPY --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
30+ RUN xargs -ra /usr/share/python3/pillow-runtime-libs.txt apt-install
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11FROM ghcr.io/snakepacker/python/base
22
33# Install python
4- RUN apt-install python3.12-minimal libpython3.12-stdlib python3.12-distutils
4+ RUN apt-install python3.12 libpython3.12-stdlib
Original file line number Diff line number Diff line change 11FROM ghcr.io/snakepacker/python/base
22
33# Install python
4- RUN apt-install python3.13-minimal libpython3.13-stdlib python3.13-nogil
4+ RUN apt-install python3.13 libpython3.13-stdlib python3.13-nogil
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments