contrib: update dockerfiles to debian 13 "trixie"

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-08-14 01:32:25 +02:00
parent 39d4dbea9c
commit 60125b888c
2 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
FROM debian:bookworm-slim # syntax=docker/dockerfile:1
ARG BASE_DEBIAN_DISTRO=trixie
FROM debian:${BASE_DEBIAN_DISTRO}-slim
RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends
COPY . /usr/src/ COPY . /usr/src/

View File

@@ -1,4 +1,8 @@
FROM debian:bookworm-slim # syntax=docker/dockerfile:1
ARG BASE_DEBIAN_DISTRO=trixie
FROM debian:${BASE_DEBIAN_DISTRO}-slim
RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends RUN apt-get update && apt-get install -y gcc libc6-dev --no-install-recommends
COPY . /usr/src/ COPY . /usr/src/