Add Dockerfile

This commit is contained in:
Alejoide 2024-03-03 19:44:52 -03:00
parent 47cf0cdfd8
commit 0ab393afb1

17
Dockerfile Normal file
View 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