jeffaudi commited on
Commit
26081ba
1 Parent(s): 4041a47

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -6,7 +6,7 @@ ENV HOST 0.0.0.0
6
 
7
  RUN apt-get update && apt-get upgrade -y \
8
  && apt-get install -y git build-essential \
9
- python3 python3-pip gcc wget \
10
  ocl-icd-opencl-dev opencl-headers clinfo \
11
  libclblast-dev libopenblas-dev \
12
  && mkdir -p /etc/OpenCL/vendors && echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
@@ -17,7 +17,7 @@ COPY . .
17
  ENV CUDA_DOCKER_ARCH=all
18
 
19
  # Install depencencies
20
- RUN python3 -m pip install --upgrade pip pytest cmake \
21
  scikit-build setuptools fastapi uvicorn sse-starlette \
22
  pydantic-settings starlette-context gradio huggingface_hub hf_transfer
23
 
 
6
 
7
  RUN apt-get update && apt-get upgrade -y \
8
  && apt-get install -y git build-essential \
9
+ python3 python3-pip gcc wget python-is-python3 \
10
  ocl-icd-opencl-dev opencl-headers clinfo \
11
  libclblast-dev libopenblas-dev \
12
  && mkdir -p /etc/OpenCL/vendors && echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
 
17
  ENV CUDA_DOCKER_ARCH=all
18
 
19
  # Install depencencies
20
+ RUN python -m pip install --upgrade pip pytest cmake \
21
  scikit-build setuptools fastapi uvicorn sse-starlette \
22
  pydantic-settings starlette-context gradio huggingface_hub hf_transfer
23