We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde7252 commit 1d61885Copy full SHA for 1d61885
Dockerfile
@@ -3,7 +3,11 @@ FROM python:3.10-slim-buster AS base
3
WORKDIR /app
4
5
# requires git to install requirements with git+https
6
-RUN apt-get update \
+# 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 \
11
&& apt-get install -y --no-install-recommends build-essential git gcc binutils
12
13
COPY . .
0 commit comments