Spaces:
Running
Running
fix: Remove sudo.
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,8 +7,8 @@ WORKDIR /code
|
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
-
RUN sudo apt update && sudo apt install -y ffmpeg
|
12 |
|
13 |
COPY . .
|
14 |
|
|
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
+
RUN apt update && apt install -y ffmpeg
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
12 |
|
13 |
COPY . .
|
14 |
|