Skip to content

Commit 44d87fa

Browse files
authored
Merge pull request #3175 from SUSE/for-deploy-16.0
🤖: Update build recipes for 16.0
2 parents 4c9892e + 106b412 commit 44d87fa

File tree

15 files changed

+42
-17
lines changed

15 files changed

+42
-17
lines changed

.github/workflows/changelog_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container: registry.opensuse.org/opensuse/bci/bci-ci:latest
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
ref: main
2020
fetch-depth: 0

.github/workflows/find-missing-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
# we need all branches for the build checks
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
ref: main

base-image/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To build a custom image using a `Containerfile` that includes the
3030
FROM registry.suse.com/bci/bci-base:16.0
3131
RUN set -euo pipefail; \
3232
zypper -n ref; \
33-
zypper -n in skopeo; \
33+
zypper -n install skopeo; \
3434
zypper -n clean -a ; \
3535
rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
3636
```
@@ -44,7 +44,7 @@ The image can also be used interactively to create a container with skopeo
4444
installed in it:
4545
```ShellSession
4646
$ podman run -ti --rm registry.suse.com/bci/bci-base:16.0
47-
# zypper -n in skopeo
47+
# zypper -n install skopeo
4848
...
4949
# skopeo inspect -f "{{ .Name }}" docker://registry.suse.com/bci/bci-base:16.0
5050
registry.suse.com/bci/bci-base

base-image/base-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Fri Nov 21 23:06:18 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- use long form commands
5+
16
-------------------------------------------------------------------
27
Thu Nov 6 08:20:39 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

php-apache8-image/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To deploy an application, copy its sources into the htdocs folder
1919
FROM registry.suse.com/bci/php-apache:8
2020

2121
RUN set -eux; \
22-
zypper -n in $my_dependencies; \
22+
zypper -n install $my_dependencies; \
2323
# additional setup steps
2424

2525
# Copy the app into the Apache2 document root
@@ -49,7 +49,7 @@ and they can be installed as follows:
4949
```Dockerfile
5050
FROM registry.suse.com/bci/php-apache:8
5151

52-
RUN zypper -n in php8-gd php8-intl
52+
RUN zypper -n install php8-gd php8-intl
5353
```
5454

5555
Alternatively, you can use the `docker-php-ext-install` script. It is provided
@@ -76,7 +76,7 @@ Install PECL extensions as follows:
7676
FROM registry.suse.com/bci/php-apache:8
7777

7878
RUN set -euo pipefail; \
79-
zypper -n in $PHPIZE_DEPS php8-pecl; \
79+
zypper -n install $PHPIZE_DEPS php8-pecl; \
8080
pecl install APCu-5.1.21;
8181
```
8282

php-apache8-image/docker-php-ext-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ for ext in $@; do
77
[[ "$ext" =~ ^- ]] || extensions+=("php8-$ext")
88
done
99

10-
zypper -n in ${extensions[*]}
10+
zypper -n install ${extensions[*]}

php-apache8-image/php-apache8-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Fri Nov 21 23:06:18 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- use long form commands
5+
16
-------------------------------------------------------------------
27
Thu Nov 6 08:20:39 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

php-fpm8-image/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To deploy an application in the PHP-FPM container, copy the application into
2727
FROM registry.suse.com/bci/php-fpm:8
2828

2929
RUN set -eux; \
30-
zypper -n in $my_dependencies; \
30+
zypper -n install $my_dependencies; \
3131
# additional setup steps
3232

3333
# Copy the app into the PHP-FPM document root
@@ -94,7 +94,7 @@ and they can be installed as follows:
9494
```Dockerfile
9595
FROM registry.suse.com/bci/php-fpm:8
9696

97-
RUN zypper -n in php8-gd php8-intl
97+
RUN zypper -n install php8-gd php8-intl
9898
```
9999

100100
Alternatively, you can use the `docker-php-ext-install` script. It is provided
@@ -121,7 +121,7 @@ Install PECL extensions as follows:
121121
FROM registry.suse.com/bci/php-fpm:8
122122

123123
RUN set -euo pipefail; \
124-
zypper -n in $PHPIZE_DEPS php8-pecl; \
124+
zypper -n install $PHPIZE_DEPS php8-pecl; \
125125
pecl install APCu-5.1.21;
126126
```
127127

php-fpm8-image/docker-php-ext-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ for ext in $@; do
77
[[ "$ext" =~ ^- ]] || extensions+=("php8-$ext")
88
done
99

10-
zypper -n in ${extensions[*]}
10+
zypper -n install ${extensions[*]}

php-fpm8-image/php-fpm8-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Fri Nov 21 23:06:18 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- use long form commands
5+
16
-------------------------------------------------------------------
27
Thu Nov 6 08:20:39 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

0 commit comments

Comments
 (0)