Omkar008 commited on
Commit
6f372fd
·
verified ·
1 Parent(s): 0df853e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,10 +11,13 @@ WORKDIR /app
11
  COPY --chown=user . /app/
12
  USER root
13
 
 
14
  RUN apt-get update && apt-get install git -y
 
15
  RUN pip3 install "git+https://github.com/openai/whisper.git"
16
  RUN apt-get update && apt-get install -y ffmpeg
17
 
 
18
  # Expose port
19
  EXPOSE 7860
20
 
 
11
  COPY --chown=user . /app/
12
  USER root
13
 
14
+ COPY requirements.txt requirements.txt
15
  RUN apt-get update && apt-get install git -y
16
+ RUN pip3 install -r requirements.txt
17
  RUN pip3 install "git+https://github.com/openai/whisper.git"
18
  RUN apt-get update && apt-get install -y ffmpeg
19
 
20
+
21
  # Expose port
22
  EXPOSE 7860
23