Skip to content

Commit ceb1e54

Browse files
committed
fixes
1 parent dea0fa2 commit ceb1e54

File tree

9 files changed

+9
-57
lines changed

9 files changed

+9
-57
lines changed

.github/workflows/docker-image.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ jobs:
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

Makefile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ endef
77
images: 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:
3230
build-all: build-base
3331
$(call build,all,all:latest)
3432

35-
build-python-3.8:
36-
$(call build,python3.8,3.8:latest)
37-
3833
build-python-3.9:
3934
$(call build,python3.9,3.9:latest)
4035

@@ -53,9 +48,6 @@ build-python-3.13:
5348
build-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-
5951
build-pillow-3.9:
6052
$(call build,pillow/3.9,3.9-pillow)
6153

all/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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
2019
RUN 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
2423
RUN apt-install -y python3.13 python3.13-dev python3.13-venv python3.13-nogil
2524

2625
RUN apt-install \
@@ -38,7 +37,6 @@ RUN apt-install \
3837
RUN ln -snf /dev/shm /root/.cargo
3938

4039
RUN \
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" && \

base/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM 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

88
COPY sources.list /etc/apt/sources.list
99
COPY apt.conf /etc/apt/apt.conf.d/snakepacker

pillow/3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ RUN find-libdeps /var/tmp/pillow-venv > /usr/share/python3/pillow-runtime-libs.t
2727

2828
FROM ghcr.io/snakepacker/python/3.12
2929
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
30+
RUN xargs -ra /usr/share/python3/pillow-runtime-libs.txt apt-install

pillow/3.8/Dockerfile

Lines changed: 0 additions & 30 deletions
This file was deleted.

python3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM 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

python3.13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM 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

python3.8/Dockerfile

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)