imspidey commited on
Commit
b667cab
1 Parent(s): f2fd24d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -2,11 +2,13 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
 
 
5
  RUN pip install ffmpeg
6
 
7
  COPY ./live.sh /code/live.sh
8
 
9
- RUN bash -c /code/live.sh
10
 
11
  COPY . .
12
 
 
2
 
3
  WORKDIR /code
4
 
5
+ RUN pip install --upgrade pip
6
+
7
  RUN pip install ffmpeg
8
 
9
  COPY ./live.sh /code/live.sh
10
 
11
+ RUN bash /code/live.sh
12
 
13
  COPY . .
14