Skip to content

Commit c2bcb00

Browse files
committed
Update Dockerfile to use Debian Trixie and latest nginx
Switch base image from debian:bookworm-slim to debian:trixie-slim and update nginx package version and repository to match Trixie. Ensures compatibility with the latest Debian release and package updates.
1 parent 882c64c commit c2bcb00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM debian:bookworm-slim
1+
FROM debian:trixie-slim
22

3-
ARG VERSION="2:1.29.0-1nwtf+351+12bookworm1"
3+
ARG VERSION="2:1.29.1-1nwtf+352+13trixie1"
44
ARG PACKAGE_REPO="https://mirrors.xtom.com/sb/nginx"
55

66
ENV NWTF_BASE="/var/lib/n.wtf"
@@ -10,7 +10,7 @@ RUN set -ex; \
1010
apt-get update; \
1111
apt-get install -y --no-install-recommends ca-certificates gettext-base wget; \
1212
wget -O /usr/share/keyrings/n-wtf.asc "https://n.wtf/public.key"; \
13-
echo "deb [signed-by=/usr/share/keyrings/n-wtf.asc] $PACKAGE_REPO bookworm main" > /etc/apt/sources.list.d/n-wtf.list; \
13+
echo "deb [signed-by=/usr/share/keyrings/n-wtf.asc] $PACKAGE_REPO trixie main" > /etc/apt/sources.list.d/n-wtf.list; \
1414
apt-get update; \
1515
apt-get install -y --no-install-recommends "nginx-extras=$VERSION"; \
1616
apt-get purge -y --auto-remove wget; \

0 commit comments

Comments
 (0)