Spaces:
Runtime error
Runtime error
Updated Dockerfile for GPU Dependencies
Browse files- Dockerfile +7 -4
Dockerfile
CHANGED
@@ -13,9 +13,10 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|
13 |
# RUN apt-get update && apt-get install -y --no-install-recommends nvidia-driver-460
|
14 |
|
15 |
RUN apt-get -y update \
|
16 |
-
&& apt-get install -y software-properties-common
|
17 |
-
|
18 |
-
|
|
|
19 |
|
20 |
RUN apt-get -y update \
|
21 |
&& apt-get -y install python3.10 \
|
@@ -25,7 +26,9 @@ RUN apt-get -y update \
|
|
25 |
&& apt-get -y install git
|
26 |
|
27 |
# Additional system dependencies
|
28 |
-
RUN apt-get
|
|
|
|
|
29 |
|
30 |
# FROM python:3.10
|
31 |
|
|
|
13 |
# RUN apt-get update && apt-get install -y --no-install-recommends nvidia-driver-460
|
14 |
|
15 |
RUN apt-get -y update \
|
16 |
+
&& apt-get install -y software-properties-common
|
17 |
+
|
18 |
+
RUN apt-get -y update \
|
19 |
+
&& add-apt-repository ppa:deadsnakes/ppa
|
20 |
|
21 |
RUN apt-get -y update \
|
22 |
&& apt-get -y install python3.10 \
|
|
|
26 |
&& apt-get -y install git
|
27 |
|
28 |
# Additional system dependencies
|
29 |
+
RUN apt-get -y update \
|
30 |
+
&& apt-get install -y ffmpeg \
|
31 |
+
&& apt-get install -y yt-dlp
|
32 |
|
33 |
# FROM python:3.10
|
34 |
|