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 90f2f42 commit 19a1a55Copy full SHA for 19a1a55
Dockerfile
@@ -1,8 +1,6 @@
1
FROM ubuntu:24.04
2
3
-RUN apt update
4
-
5
-RUN apt install -y \
+RUN apt update && apt install -y \
6
binutils-multiarch \
7
bison \
8
file \
@@ -27,15 +25,12 @@ RUN apt install -y \
27
25
pkg-config \
28
26
python3.12 \
29
python3-pip \
+ python3-requests \
30
libpython3-dev \
31
texinfo \
32
wget \
33
xz-utils
34
35
-# Remove externally-managed constrainsts since we run inside a docker...
36
-RUN rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
37
-RUN python3.12 -m pip install requests
38
39
COPY src/docker_utils/download_musl_toolchains.py .
40
RUN python3.12 -u download_musl_toolchains.py
41
0 commit comments