blmdsydm commited on
Commit
5b128cc
1 Parent(s): 0755ca5

Update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +2 -2
dockerfile CHANGED
@@ -12,8 +12,8 @@ ADD . /opt/whisper-webui/
12
  # Further, pip install fails, so we must upgrade pip first.
13
  RUN apt-get -y install python3-tk
14
  RUN python3 -m pip install --upgrade pip
15
- RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb
16
- RUN dpkg -i libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb && rm libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb
17
 
18
  RUN if [ "${WHISPER_IMPLEMENTATION}" = "whisper" ]; then \
19
  python3 -m pip install -r /opt/whisper-webui/requirements-whisper.txt; \
 
12
  # Further, pip install fails, so we must upgrade pip first.
13
  RUN apt-get -y install python3-tk
14
  RUN python3 -m pip install --upgrade pip
15
+ RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb && \
16
+ dpkg -i libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb && rm libcudnn8_8.5.0.96-1+cuda11.7_amd64.deb
17
 
18
  RUN if [ "${WHISPER_IMPLEMENTATION}" = "whisper" ]; then \
19
  python3 -m pip install -r /opt/whisper-webui/requirements-whisper.txt; \