Tom Willemse
b3be74ad3a
This sets up the docker container with the necessary dependencies to run the tasks.
9 lines
151 B
Docker
9 lines
151 B
Docker
FROM python:3.12-slim
|
|
|
|
RUN apt update && apt install -y ffmpeg && pip install invoke
|
|
|
|
VOLUME ["/data"]
|
|
|
|
WORKDIR /data
|
|
|
|
CMD /usr/local/bin/invoke probe
|