LAP-DEV commited on
Commit
b735cb1
·
verified ·
1 Parent(s): b1f3b04

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -10,6 +10,11 @@ WORKDIR /Whisper-WebUI
10
 
11
  COPY requirements.txt .
12
 
 
 
 
 
 
13
  RUN python3 -m venv venv && \
14
  . venv/bin/activate && \
15
  pip install -U -r requirements.txt
 
10
 
11
  COPY requirements.txt .
12
 
13
+ RUN pip install --upgrade pip setuptools wheel
14
+ RUN git clone https://github.com/jhj0517/jhj0517-whisper.git && \
15
+ cd jhj0517-whisper && \
16
+ pip install .
17
+
18
  RUN python3 -m venv venv && \
19
  . venv/bin/activate && \
20
  pip install -U -r requirements.txt