From 338d8e6598a698e44b9864cacd585259fab02325 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 19:27:37 +0000 Subject: [PATCH 1/2] Initial plan From 8d6b133290ab1cb5ab03e16e4ab8c44fb079b391 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 19:28:33 +0000 Subject: [PATCH 2/2] fix: switch Dockerfile base image from python:3.13 to ubuntu:24.04 Agent-Logs-Url: https://github.com/nextcloud/documentation/sessions/76620503-6684-4759-a1fb-379890ff7dc8 Co-authored-by: nextcloud-command <88102737+nextcloud-command@users.noreply.github.com> --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d759d2ea63c..e861206ecc3 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13 +FROM ubuntu:24.04 LABEL org.opencontainers.image.source="https://github.com/nextcloud/documentation" LABEL org.opencontainers.image.description="Sphinx build environment for Nextcloud documentation" @@ -12,6 +12,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \ && apt-get -y install --no-install-recommends \ ca-certificates curl gnupg2 git lsb-release nano make \ unzip wget \ + python3 python3-pip python3-venv \ latexmk texlive-fonts-extra texlive-fonts-extra-links texlive-fonts-recommended \ texlive-latex-extra texlive-latex-recommended tex-gyre texlive-xetex xindy \ && mktexlsr \