Spaces:
Runtime error
Runtime error
CaesarCloudSync commited on
Commit ·
cd1e170
1
Parent(s): c63f01a
RevisionBank Notebook Laptop version at good point
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
-
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|