From fab6ba9216d790062be1669f2ade56c953b877ce Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Sat, 27 Sep 2025 05:51:35 -0600 Subject: [PATCH] Update build and deploy containers to trixie --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1542aa0..b1d3433 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.3-bookworm AS builder +FROM golang:1.25.1-trixie AS builder ARG GIT_SHA="" # install yt-dlp @@ -26,7 +26,7 @@ ADD go.mod /src/. RUN cd /src && go mod tidy RUN cd /src && go build -ldflags "-X ytdlp-site/config.gitSHA=${GIT_SHA} -X ytdlp-site/config.buildDate=$(date +%Y-%m-%d)" -o server *.go -FROM debian:bookworm-slim +FROM debian:trixie-slim RUN apt-get update \ && apt-get install -y --no-install-recommends --no-install-suggests \