forked from LISA-KOREA/UPLOADER-BOT-V4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (25 loc) · 824 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set the working directory in the container
WORKDIR /app
# Update the package list and install required packages
RUN apt-get update && \
apt-get install -y ffmpeg aria2 git wget pv jq python3-dev mediainfo && \
rm -rf /var/lib/apt/lists/*
# Install the necessary Python packages
COPY requirements.txt .
RUN pip install -r requirements.txt
# Force reinstall brotli
RUN pip install --force-reinstall brotli
# Install and upgrade yt-dlp
RUN pip uninstall -y yt-dlp && \
pip install yt-dlp && \
pip install --upgrade yt-dlp
# Copy the rest of the application code
COPY . .
# Check the yt-dlp installation
RUN python3 -m pip check yt-dlp
# Verify yt-dlp version
RUN yt-dlp --version
# Run the application
CMD ["python3", "bot.py"]