ejschwartz commited on
Commit
88b751b
·
1 Parent(s): 84de2f5
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -14,12 +14,14 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
14
  build-essential \
15
  cmake \
16
  python3-pip \
17
- python-is-python3 \
18
  python3.11-dev python3.11-distutils \
19
  wget
20
 
21
  RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
 
 
22
 
 
23
  RUN python3 -m pip
24
 
25
  # Install llvm
 
14
  build-essential \
15
  cmake \
16
  python3-pip \
 
17
  python3.11-dev python3.11-distutils \
18
  wget
19
 
20
  RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
21
+ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.11 1
22
+ RUN update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1
23
 
24
+ RUN pip3
25
  RUN python3 -m pip
26
 
27
  # Install llvm