You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3.10.14-slim
|
|
|
|
RUN apt update
|
|
RUN apt-get install -y ffmpeg
|
|
RUN apt install python3-pip -y
|
|
|
|
RUN mkdir /app
|
|
ADD . /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python3", "main.py"]
|