From 1a02a97d8bad5353d8bd222193f4ba9d9340a997 Mon Sep 17 00:00:00 2001 From: chigicherlachinmaya-arch Date: Sat, 18 Jul 2026 16:59:25 +0530 Subject: [PATCH] Remove software-properties-common from Docker tutorial Fixes #1493. This package is unavailable on python:3.12-slim (Debian 13/Trixie) and is not needed for the tutorial. --- content/deploy/tutorials/docker.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/deploy/tutorials/docker.md b/content/deploy/tutorials/docker.md index 510e6a553..e4c15d324 100644 --- a/content/deploy/tutorials/docker.md +++ b/content/deploy/tutorials/docker.md @@ -60,7 +60,6 @@ WORKDIR /app RUN apt-get update && apt-get install -y \ build-essential \ curl \ - software-properties-common \ git \ && rm -rf /var/lib/apt/lists/* @@ -112,7 +111,6 @@ Let’s walk through each line of the Dockerfile : RUN apt-get update && apt-get install -y \ build-essential \ curl \ - software-properties-common \ git \ && rm -rf /var/lib/apt/lists/* ```