mirror of
https://cdm-project.com/Download-Tools/udemy-downloader.git
synced 2025-04-30 00:54:25 +02:00
Add Dockerfile
This commit is contained in:
parent
47cf0cdfd8
commit
0ab393afb1
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
# Use an official Python runtime as a parent image
|
||||
FROM python:3.12-slim-bullseye
|
||||
|
||||
# Set the working directory in the container to /app
|
||||
WORKDIR /app
|
||||
|
||||
# Install necessary packages
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ffmpeg \
|
||||
aria2 \
|
||||
curl \
|
||||
unzip
|
||||
|
||||
# Copy the current directory contents into the container at /app
|
||||
COPY . /app
|
||||
|
||||
RUN pip install -r requirements.txt
|
Loading…
x
Reference in New Issue
Block a user