Skip to content

Commit d3749f4

Browse files
committed
Update stable to Debian trixie
1 parent 1464f9f commit d3749f4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

stable/debian-otel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN set -x; \
2121
&& case "$dpkgArch" in \
2222
amd64|arm64) \
2323
# arches officialy built by upstream
24-
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list \
24+
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list \
2525
&& apt-get update \
2626
;; \
2727
*) \

stable/debian-perl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -x; \
1919
&& case "$dpkgArch" in \
2020
amd64|arm64) \
2121
# arches officialy built by upstream
22-
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list \
22+
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list \
2323
&& apt-get update \
2424
;; \
2525
*) \

stable/debian/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
#
44
# PLEASE DO NOT EDIT IT DIRECTLY.
55
#
6-
FROM debian:bookworm-slim
6+
FROM debian:trixie-slim
77

88
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
99

1010
ENV NGINX_VERSION 1.28.0
1111
ENV NJS_VERSION 0.8.10
12-
ENV NJS_RELEASE 1~bookworm
13-
ENV PKG_RELEASE 1~bookworm
14-
ENV DYNPKG_RELEASE 1~bookworm
12+
ENV NJS_RELEASE 1~trixie
13+
ENV PKG_RELEASE 1~trixie
14+
ENV DYNPKG_RELEASE 1~trixie
1515

1616
RUN set -x \
1717
# create nginx user/group first, to be consistent throughout docker variants
@@ -48,7 +48,7 @@ RUN set -x \
4848
&& case "$dpkgArch" in \
4949
amd64|arm64) \
5050
# arches officialy built by upstream
51-
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list \
51+
echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list \
5252
&& apt-get update \
5353
;; \
5454
*) \

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ declare -A dynpkg=(
5151

5252
declare -A debian=(
5353
[mainline]='trixie'
54-
[stable]='bookworm'
54+
[stable]='trixie'
5555
)
5656

5757
declare -A alpine=(

0 commit comments

Comments
 (0)