Skip to content

Commit 40c77ab

Browse files
committed
Enhance build script by re-enabling PHP image builds for versions 8.4 to 7.4
1 parent 0ddfd5b commit 40c77ab

File tree

1 file changed

+53
-53
lines changed

1 file changed

+53
-53
lines changed

build-images.sh

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -19,59 +19,59 @@ podman build \
1919

2020
images+=("${repobase}/php8.5-fpm")
2121

22-
# podman build \
23-
# --force-rm \
24-
# --layers \
25-
# --tag "${repobase}/php8.4-fpm" \
26-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.4.15-fpm-bookworm" \
27-
# container
28-
29-
# images+=("${repobase}/php8.4-fpm")
30-
31-
# podman build \
32-
# --force-rm \
33-
# --layers \
34-
# --tag "${repobase}/php8.3-fpm" \
35-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.3.28-fpm-bookworm" \
36-
# container
37-
38-
# images+=("${repobase}/php8.3-fpm")
39-
40-
# podman build \
41-
# --force-rm \
42-
# --layers \
43-
# --tag "${repobase}/php8.2-fpm" \
44-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.2.29-fpm-bookworm" \
45-
# container
46-
47-
# images+=("${repobase}/php8.2-fpm")
48-
49-
# podman build \
50-
# --force-rm \
51-
# --layers \
52-
# --tag "${repobase}/php8.1-fpm" \
53-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.1.33-fpm-bookworm" \
54-
# container
55-
56-
# images+=("${repobase}/php8.1-fpm")
57-
58-
# podman build \
59-
# --force-rm \
60-
# --layers \
61-
# --tag "${repobase}/php8.0-fpm" \
62-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.0.30-fpm-bullseye" \
63-
# container
64-
65-
# images+=("${repobase}/php8.0-fpm")
66-
67-
# podman build \
68-
# --force-rm \
69-
# --layers \
70-
# --tag "${repobase}/php7.4-fpm" \
71-
# --build-arg "PHP_VERSION_IMAGE=docker.io/library/php:7.4.33-fpm-bullseye" \
72-
# container
73-
74-
# images+=("${repobase}/php7.4-fpm")
22+
podman build \
23+
--force-rm \
24+
--layers \
25+
--tag "${repobase}/php8.4-fpm" \
26+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.4.15-fpm-bookworm" \
27+
container
28+
29+
images+=("${repobase}/php8.4-fpm")
30+
31+
podman build \
32+
--force-rm \
33+
--layers \
34+
--tag "${repobase}/php8.3-fpm" \
35+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.3.28-fpm-bookworm" \
36+
container
37+
38+
images+=("${repobase}/php8.3-fpm")
39+
40+
podman build \
41+
--force-rm \
42+
--layers \
43+
--tag "${repobase}/php8.2-fpm" \
44+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.2.29-fpm-bookworm" \
45+
container
46+
47+
images+=("${repobase}/php8.2-fpm")
48+
49+
podman build \
50+
--force-rm \
51+
--layers \
52+
--tag "${repobase}/php8.1-fpm" \
53+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.1.33-fpm-bookworm" \
54+
container
55+
56+
images+=("${repobase}/php8.1-fpm")
57+
58+
podman build \
59+
--force-rm \
60+
--layers \
61+
--tag "${repobase}/php8.0-fpm" \
62+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:8.0.30-fpm-bullseye" \
63+
container
64+
65+
images+=("${repobase}/php8.0-fpm")
66+
67+
podman build \
68+
--force-rm \
69+
--layers \
70+
--tag "${repobase}/php7.4-fpm" \
71+
--build-arg "PHP_VERSION_IMAGE=docker.io/library/php:7.4.33-fpm-bullseye" \
72+
container
73+
74+
images+=("${repobase}/php7.4-fpm")
7575

7676
# Create a new empty container image
7777
container=$(buildah from scratch)

0 commit comments

Comments
 (0)