uzi007 commited on
Commit
1a90d45
1 Parent(s): af878d8

Updated Dockerfile for GPU Dependencies

Browse files
Files changed (1) hide show
  1. 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
- && apt-get -y update \
18
- && add-apt-repository universe
 
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 install -y ffmpeg && apt-get install -y yt-dlp
 
 
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