praeclarumjj3 commited on
Commit
cf95753
1 Parent(s): 3c9c655

Add dependencies for opencv to docker

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -7,6 +7,9 @@ WORKDIR $WORKDIR
7
  RUN chown -R admin:admin $WORKDIR
8
  RUN chmod 755 $WORKDIR
9
 
 
 
 
10
  COPY requirements.txt $WORKDIR/requirements.txt
11
 
12
  RUN pip install gradio --no-cache-dir
 
7
  RUN chown -R admin:admin $WORKDIR
8
  RUN chmod 755 $WORKDIR
9
 
10
+ RUN apt-get update
11
+ RUN apt-get install ffmpeg libsm6 libxext6 -y
12
+
13
  COPY requirements.txt $WORKDIR/requirements.txt
14
 
15
  RUN pip install gradio --no-cache-dir