From 0ab393afb160362fa2d8e08e948a3e7e330fc1f2 Mon Sep 17 00:00:00 2001 From: Alejoide Date: Sun, 3 Mar 2024 19:44:52 -0300 Subject: [PATCH] Add Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c2ef03c --- /dev/null +++ b/Dockerfile @@ -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