Skip to content

Commit 1d61885

Browse files
committed
Update Dockerfile mirrors
1 parent fde7252 commit 1d61885

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ FROM python:3.10-slim-buster AS base
33
WORKDIR /app
44

55
# requires git to install requirements with git+https
6-
RUN apt-get update \
6+
# Update to debian archive from https://gist.github.com/ishad0w/6ce1eb569c734880200c47923577426a
7+
RUN echo "deb http://archive.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \
8+
&& echo "deb http://archive.debian.org/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list \
9+
&& echo "deb http://archive.debian.org/debian buster-backports main contrib non-free" >> /etc/apt/sources.list \
10+
&& apt-get update \
711
&& apt-get install -y --no-install-recommends build-essential git gcc binutils
812

913
COPY . .

0 commit comments

Comments
 (0)