From f6e1bddc9cb5a47c18813198903d574743fc9b33 Mon Sep 17 00:00:00 2001 From: Herklos Date: Sat, 18 Oct 2025 19:04:18 +0200 Subject: [PATCH] Update Dockerfile mirrors --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 902dea5..f69a8dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,11 @@ FROM python:3.10-slim-buster AS base WORKDIR /app # requires git to install requirements with git+https -RUN apt-get update \ +# Update to debian archive from https://gist.github.com/ishad0w/6ce1eb569c734880200c47923577426a +RUN echo "deb http://archive.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \ + && echo "deb http://archive.debian.org/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list \ + && echo "deb http://archive.debian.org/debian buster-backports main contrib non-free" >> /etc/apt/sources.list \ + && apt-get update \ && apt-get install -y --no-install-recommends build-essential git gcc binutils COPY . .