SaleemFiverr commited on
Commit
1b047fd
·
1 Parent(s): cfbc998

Install yt-dlp via apt in Space image

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -6,12 +6,10 @@ RUN apt-get update && apt-get install -y \
6
  ffmpeg \
7
  curl \
8
  python3 \
9
- python3-pip \
10
  python-is-python3 \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
- RUN pip3 install --no-cache-dir yt-dlp
14
-
15
  # Set the working directory
16
  WORKDIR /app
17
 
 
6
  ffmpeg \
7
  curl \
8
  python3 \
9
+ yt-dlp \
10
  python-is-python3 \
11
  && rm -rf /var/lib/apt/lists/*
12
 
 
 
13
  # Set the working directory
14
  WORKDIR /app
15