Add Dockerfile
This sets up the docker container with the necessary dependencies to run the tasks.
This commit is contained in:
parent
8919ef3dc3
commit
b3be74ad3a
2 changed files with 10 additions and 0 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*
|
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
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
|
Loading…
Reference in a new issue