instal ffmpeg with python bindings inside the scheduler
This commit is contained in:
parent
dff79faa10
commit
e92e4c5097
2 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,11 @@
|
|||
FROM python:3-bookworm
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
ffmpeg \
|
||||
&& \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /python-docker
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
|
|
|
@ -7,3 +7,4 @@ MarkupSafe==2.1.3
|
|||
waitress==2.1.2
|
||||
Werkzeug==3.0.1
|
||||
APScheduler==3.10.4
|
||||
python-ffmpeg==2.0.10
|
Loading…
Reference in a new issue