Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
@@ -40,17 +40,16 @@ RUN apt-get install -y tzdata git python3.12 python3.12-venv python3.12-dev pyth
|
|
40 |
|
41 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1 \
|
42 |
&& update-alternatives --set python3 /usr/bin/python3.12 \
|
43 |
-
&& ln -sf /usr/bin/python3.12-config /usr/bin/python3-config
|
44 |
-
&& update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.12 1
|
45 |
|
46 |
|
47 |
-
RUN python3 --version && python3 -m
|
48 |
|
49 |
# RUN apt-get update && apt-get install -y python3 python3-pip git
|
50 |
# RUN pip install --upgrade pip
|
51 |
|
52 |
# Install vLLM
|
53 |
-
RUN
|
54 |
|
55 |
RUN useradd -m appuser
|
56 |
USER appuser
|
|
|
40 |
|
41 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1 \
|
42 |
&& update-alternatives --set python3 /usr/bin/python3.12 \
|
43 |
+
&& ln -sf /usr/bin/python3.12-config /usr/bin/python3-config
|
|
|
44 |
|
45 |
|
46 |
+
RUN python3 --version && python3 -m pip --version
|
47 |
|
48 |
# RUN apt-get update && apt-get install -y python3 python3-pip git
|
49 |
# RUN pip install --upgrade pip
|
50 |
|
51 |
# Install vLLM
|
52 |
+
RUN pip install vllm==0.10.0 --extra-index-url https://download.pytorch.org/whl/cu113
|
53 |
|
54 |
RUN useradd -m appuser
|
55 |
USER appuser
|